summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsqldatabase/tst_qsqldatabase.cpp
blob: 4462659502e77f06d5aa506c41366e3d0944e348 (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
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/


#include <QtTest/QtTest>
#include <qsqldatabase.h>
#include <qsqlquery.h>
#include <qsqldriver.h>
#ifdef QT3_SUPPORT
#include <q3sqlcursor.h>
#include <q3sqlrecordinfo.h>
#include <q3cstring.h>
#endif
#include <qsqlrecord.h>
#include <qsqlfield.h>
#include <qsqlindex.h>
#include <qregexp.h>
#include <qvariant.h>
#include <qdatetime.h>
#include <qdebug.h>

#define NODATABASE_SKIP "No database drivers are available in this Qt configuration"

#include "tst_databases.h"

//TESTED_FILES=

QT_FORWARD_DECLARE_CLASS(QSqlDatabase)
struct FieldDef;

class tst_QSqlDatabase : public QObject
{
    Q_OBJECT

public:
    tst_QSqlDatabase();
    virtual ~tst_QSqlDatabase();

public slots:
    void initTestCase();
    void cleanupTestCase();
    void init();
    void cleanup();
private slots:
    void record_data() { generic_data(); }
    //void record();
    void open_data() { generic_data(); }
    void open();
    void tables_data() { generic_data(); }
    void tables();
    void oci_tables_data() { generic_data("QOCI"); }
    void oci_tables();
    void transaction_data() { generic_data(); }
    void transaction();
    void eventNotification_data() { generic_data(); }
    void eventNotification();
    void addDatabase();

    //database specific tests
    void recordMySQL_data() { generic_data("QMYSQL"); }
    void recordMySQL();
    void recordPSQL_data() { generic_data("QPSQL"); }
    void recordPSQL();
    void recordOCI_data() { generic_data("QOCI"); }
    void recordOCI();
    void recordTDS_data() { generic_data("QTDS"); }
    void recordTDS();
    void recordDB2_data() { generic_data("QDB2"); }
    void recordDB2();
    void recordSQLite_data() { generic_data("QSQLITE"); }
    void recordSQLite();
    void recordAccess_data() { generic_data("QODBC"); }
    void recordAccess();
    void recordSQLServer_data() { generic_data("QODBC"); }
    void recordSQLServer();
    void recordIBase_data() {generic_data("QIBASE"); }
    void recordIBase();

    void eventNotificationIBase_data() { generic_data("QIBASE"); }
    void eventNotificationIBase();
    void eventNotificationPSQL_data() { generic_data("QPSQL"); }
    void eventNotificationPSQL();

    //database specific 64 bit integer test
    void bigIntField_data() { generic_data(); }
    void bigIntField();

    // general tests
    void getConnectionName_data() { generic_data(); }
    void getConnectionName(); // For task 129992

    //problem specific tests
    void alterTable_data() { generic_data(); }
    void alterTable();
    void recordNonSelect_data() { generic_data(); }
    void recordNonSelect();
    void caseSensivity_data() { generic_data(); }
    void caseSensivity();
    void noEscapedFieldNamesInRecord_data() { generic_data(); }
    void noEscapedFieldNamesInRecord();
    void whitespaceInIdentifiers_data() { generic_data(); }
    void whitespaceInIdentifiers();
    void formatValueTrimStrings_data() { generic_data(); }
    void formatValueTrimStrings();
    void precisionPolicy_data() { generic_data(); }
    void precisionPolicy();

    void db2_valueCacheUpdate_data() { generic_data("QDB2"); }
    void db2_valueCacheUpdate();

    void psql_schemas_data() { generic_data("QPSQL"); }
    void psql_schemas();
    void psql_escapedIdentifiers_data() { generic_data("QPSQL"); }
    void psql_escapedIdentifiers();
    void psql_escapeBytea_data() { generic_data("QPSQL"); }
    void psql_escapeBytea();
    void bug_249059_data() { generic_data("QPSQL"); }
    void bug_249059();

    void mysqlOdbc_unsignedIntegers_data() { generic_data(); }
    void mysqlOdbc_unsignedIntegers();
    void mysql_multiselect_data() { generic_data("QMYSQL"); }
    void mysql_multiselect();  // For task 144331
    void mysql_savepointtest_data() { generic_data("QMYSQL"); }
    void mysql_savepointtest();

    void accessOdbc_strings_data() { generic_data(); }
    void accessOdbc_strings();

    void ibase_numericFields_data() { generic_data("QIBASE"); }
    void ibase_numericFields(); // For task 125053
    void ibase_fetchBlobs_data() { generic_data("QIBASE"); }
    void ibase_fetchBlobs(); // For task 143471
    void ibase_useCustomCharset_data() { generic_data("QIBASE"); }
    void ibase_useCustomCharset(); // For task 134608
    void ibase_procWithoutReturnValues_data() { generic_data("QIBASE"); } // For task 165423
    void ibase_procWithoutReturnValues();
    void ibase_procWithReturnValues_data() { generic_data("QIBASE"); } // For task 177530
    void ibase_procWithReturnValues();

    void odbc_reopenDatabase_data() { generic_data("QODBC"); }
    void odbc_reopenDatabase();
    void odbc_uniqueidentifier_data() { generic_data("QODBC"); }
    void odbc_uniqueidentifier(); // For task 141822
    void odbc_uintfield_data() { generic_data("QODBC"); }
    void odbc_uintfield();
    void odbc_bindBoolean_data() { generic_data("QODBC"); }
    void odbc_bindBoolean();
    void odbc_testqGetString_data() { generic_data("QODBC"); }
    void odbc_testqGetString();

    void oci_serverDetach_data() { generic_data("QOCI"); }
    void oci_serverDetach(); // For task 154518
    void oci_xmltypeSupport_data() { generic_data("QOCI"); }
    void oci_xmltypeSupport();
    void oci_fieldLength_data() { generic_data("QOCI"); }
    void oci_fieldLength();
    void oci_synonymstest_data() { generic_data("QOCI"); }
    void oci_synonymstest();

    void sqlite_bindAndFetchUInt_data() { generic_data("QSQLITE"); }
    void sqlite_bindAndFetchUInt();

    void sqlStatementUseIsNull_189093_data() { generic_data(); }
    void sqlStatementUseIsNull_189093();

    void sqlite_enable_cache_mode_data() { generic_data("QSQLITE"); }
    void sqlite_enable_cache_mode();

private:
    void createTestTables(QSqlDatabase db);
    void dropTestTables(QSqlDatabase db);
    void populateTestTables(QSqlDatabase db);
    void generic_data(const QString &engine=QString());

#ifdef QT3_SUPPORT
    void testRecordInfo(const FieldDef fieldDefs[], const Q3SqlRecordInfo& inf);
#endif
    void testRecord(const FieldDef fieldDefs[], const QSqlRecord& inf, QSqlDatabase db);
    void commonFieldTest(const FieldDef fieldDefs[], QSqlDatabase, const int);
    void checkValues(const FieldDef fieldDefs[], QSqlDatabase db);
    void checkNullValues(const FieldDef fieldDefs[], QSqlDatabase db);

    tst_Databases dbs;
};

// number of records to be inserted per testfunction
static const int ITERATION_COUNT = 2;
static int pkey = 1;

//helper class for database specific tests
struct FieldDef {
    FieldDef(QString tn = QString(),
          QVariant::Type t = QVariant::Invalid,
          QVariant v = QVariant(),
          bool nl = true):
        typeName(tn), type(t), val(v), nullable(nl) {}

    QString fieldName() const
    {
        QString rt = typeName;
        rt.replace(QRegExp("\\s"), QString("_"));
#ifdef QT3_SUPPORT
        int i = rt.find("(");
#else
        int i = rt.indexOf("(");
#endif
        if (i == -1)
            i = rt.length();
        if (i > 20)
            i = 20;
        return "t_" + rt.left(i);
    }
    QString typeName;
    QVariant::Type type;
    QVariant val;
    bool nullable;
};

// creates a table out of the FieldDefs and returns the number of fields
// excluding the primary key field
static int createFieldTable(const FieldDef fieldDefs[], QSqlDatabase db)
{
    tst_Databases::safeDropTable(db, qTableName("qtestfields", __FILE__));
    QSqlQuery q(db);
    // construct a create table statement consisting of all fieldtypes
    QString qs = "create table " + qTableName("qtestfields", __FILE__);
    QString autoName = tst_Databases::autoFieldName(db);
    if (tst_Databases::isMSAccess(db))
        qs.append(" (id int not null");
    else if (tst_Databases::isPostgreSQL(db))
        qs.append(" (id serial not null");
    else
        qs.append(QString("(id integer not null %1 primary key").arg(autoName));

    int i = 0;
    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        qs += QString(",\n %1 %2").arg(fieldDefs[ i ].fieldName()).arg(fieldDefs[ i ].typeName);
        if ((db.driverName().startsWith("QTDS") || tst_Databases::isSqlServer(db)) && fieldDefs[ i ].nullable) {
            qs += " null";
        }
    }

    if (tst_Databases::isMSAccess(db))
        qs.append(",\n primary key (id)");

    qs += ')';
    if (!q.exec(qs)) {
        qDebug() << "Creation of Table failed:" << tst_Databases::printError(q.lastError(), db);
        qDebug() << "Query: " << qs;
        return -1;
    }
    return i;
}

tst_QSqlDatabase::tst_QSqlDatabase()
{
}

tst_QSqlDatabase::~tst_QSqlDatabase()
{
}

void tst_QSqlDatabase::createTestTables(QSqlDatabase db)
{
    if (!db.isValid())
    return;
    QSqlQuery q(db);
    if (db.driverName().startsWith("QMYSQL"))
        // ### stupid workaround until we find a way to hardcode this
        // in the MySQL server startup script
        q.exec("set table_type=innodb");
    else if (tst_Databases::isSqlServer(db)) {
        QVERIFY_SQL(q, exec("SET ANSI_DEFAULTS ON"));
        QVERIFY_SQL(q, exec("SET IMPLICIT_TRANSACTIONS OFF"));
    } else if(tst_Databases::isPostgreSQL(db))
        QVERIFY_SQL( q, exec("set client_min_messages='warning'"));

    // please never ever change this table; otherwise fix all tests ;)
    if (tst_Databases::isMSAccess(db)) {
        QVERIFY_SQL(q, exec("create table " + qTableName("qtest", __FILE__) +
                   " (id int not null, t_varchar varchar(40) not null, t_char char(40), "
                   "t_numeric number, primary key (id, t_varchar))"));
    } else {
        QVERIFY_SQL(q, exec("create table " + qTableName("qtest", __FILE__) +
               " (id integer not null, t_varchar varchar(40) not null, "
               "t_char char(40), t_numeric numeric(6, 3), primary key (id, t_varchar))"));
    }

    if (testWhiteSpaceNames(db.driverName())) {
        QString qry = "create table "
            + db.driver()->escapeIdentifier(qTableName("qtest", __FILE__) + " test", QSqlDriver::TableName)
            + '('
            + db.driver()->escapeIdentifier(QLatin1String("test test"), QSqlDriver::FieldName)
            + " int not null primary key)";
        QVERIFY_SQL(q, exec(qry));
    }
}

void tst_QSqlDatabase::dropTestTables(QSqlDatabase db)
{
    if (!db.isValid())
        return;

    if(tst_Databases::isPostgreSQL(db)) {
        QSqlQuery q(db);
        QVERIFY_SQL( q, exec("set client_min_messages='warning'"));
    }

    // drop the view first, otherwise we'll get dependency problems
    tst_Databases::safeDropViews(db, QStringList() << qTableName("qtest_view", __FILE__) << qTableName("qtest_view2", __FILE__));

    QStringList tableNames;
    tableNames << qTableName("qtest", __FILE__)
            << qTableName("qtestfields", __FILE__)
            << qTableName("qtestalter", __FILE__)
            << qTableName("qtest_temp", __FILE__)
            << qTableName("qtest_bigint", __FILE__)
            << qTableName("qtest_xmltype", __FILE__)
            << qTableName("latin1table", __FILE__)
            << qTableName("qtest_sqlguid", __FILE__)
            << qTableName("batable", __FILE__)
            << qTableName("qtest_prec", __FILE__)
            << qTableName("uint", __FILE__)
            << qTableName("strings", __FILE__)
            << qTableName("numericfields", __FILE__)
            << qTableName("qtest_ibaseblobs", __FILE__)
            << qTableName("qtestBindBool", __FILE__)
            << qTableName("testqGetString", __FILE__)
            << qTableName("qtest_sqlguid", __FILE__)
            << qTableName("uint_table", __FILE__)
            << qTableName("uint_test", __FILE__)
            << qTableName("bug_249059", __FILE__);

    QSqlQuery q(0, db);
    if (db.driverName().startsWith("QPSQL")) {
        q.exec("drop schema " + qTableName("qtestschema", __FILE__) + " cascade");
        q.exec("drop schema " + qTableName("qtestScHeMa", __FILE__) + " cascade");
    }

    if (testWhiteSpaceNames(db.driverName()))
        tableNames <<  db.driver()->escapeIdentifier(qTableName("qtest", __FILE__) + " test", QSqlDriver::TableName);

    tst_Databases::safeDropTables(db, tableNames);

    if (db.driverName().startsWith("QOCI")) {
        q.exec("drop user "+qTableName("CREATOR", __FILE__)+" cascade");
        q.exec("drop user "+qTableName("APPUSER", __FILE__)+" cascade");
        q.exec("DROP TABLE system."+qTableName("mypassword", __FILE__));

    }
}

void tst_QSqlDatabase::populateTestTables(QSqlDatabase db)
{
    if (!db.isValid())
        return;
    QSqlQuery q(db);
    const QString qtest(qTableName("qtest", __FILE__));

    q.exec("delete from " + qtest); //non-fatal
    QVERIFY_SQL(q, exec("insert into " + qtest + " (id, t_varchar, t_char, t_numeric) values (0, 'VarChar0', 'Char0', 1.1)"));
    QVERIFY_SQL(q, exec("insert into " + qtest + " (id, t_varchar, t_char, t_numeric) values (1, 'VarChar1', 'Char1', 2.2)"));
    QVERIFY_SQL(q, exec("insert into " + qtest + " (id, t_varchar, t_char, t_numeric) values (2, 'VarChar2', 'Char2', 3.3)"));
    QVERIFY_SQL(q, exec("insert into " + qtest + " (id, t_varchar, t_char, t_numeric) values (3, 'VarChar3', 'Char3', 4.4)"));
    QVERIFY_SQL(q, exec("insert into " + qtest + " (id, t_varchar, t_char, t_numeric) values (4, 'VarChar4', NULL, NULL)"));
}

void tst_QSqlDatabase::initTestCase()
{
    dbs.open();

    for (QStringList::ConstIterator it = dbs.dbNames.begin(); it != dbs.dbNames.end(); ++it) {
        QSqlDatabase db = QSqlDatabase::database((*it));
        CHECK_DATABASE(db);
        dropTestTables(db); //in case of leftovers
        createTestTables(db);
        populateTestTables(db);
    }
}

void tst_QSqlDatabase::cleanupTestCase()
{
    for (QStringList::ConstIterator it = dbs.dbNames.begin(); it != dbs.dbNames.end(); ++it) {
        QSqlDatabase db = QSqlDatabase::database((*it));
        CHECK_DATABASE(db);
        dropTestTables(db);
    }

    dbs.close();
}

void tst_QSqlDatabase::init()
{
}

void tst_QSqlDatabase::cleanup()
{
}

void tst_QSqlDatabase::generic_data(const QString& engine)
{
    if ( dbs.fillTestTable(engine) == 0 ) {
        if(engine.isEmpty())
           QSKIP( "No database drivers are available in this Qt configuration", SkipAll );
        else
           QSKIP( (QString("No database drivers of type %1 are available in this Qt configuration").arg(engine)).toLocal8Bit(), SkipAll );
    }
}

void tst_QSqlDatabase::addDatabase()
{
    QTest::ignoreMessage(QtWarningMsg, "QSqlDatabase: BLAH_FOO_NONEXISTENT_DRIVER driver not loaded");
    QTest::ignoreMessage(QtWarningMsg, qPrintable("QSqlDatabase: available drivers: " + QSqlDatabase::drivers().join(QLatin1String(" "))));
    {
        QSqlDatabase db = QSqlDatabase::addDatabase("BLAH_FOO_NONEXISTENT_DRIVER",
                                                    "INVALID_CONNECTION");
        QVERIFY(!db.isValid());
    }
    QVERIFY(QSqlDatabase::contains("INVALID_CONNECTION"));
    QSqlDatabase::removeDatabase("INVALID_CONNECTION");
    QVERIFY(!QSqlDatabase::contains("INVALID_CONNECTION"));
}

void tst_QSqlDatabase::open()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    int i;
    for (i = 0; i < 10; ++i) {
        db.close();
        QVERIFY(!db.isOpen());
        QVERIFY_SQL(db, open());
        QVERIFY(db.isOpen());
        QVERIFY(!db.isOpenError());
    }

    if (db.driverName().startsWith("QSQLITE") && db.databaseName() == ":memory:") {
        // tables in in-memory databases don't survive an open/close
        createTestTables(db);
        populateTestTables(db);
    }
}

void tst_QSqlDatabase::recordNonSelect()
{
#ifdef QT3_SUPPORT
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);

    // nothing should happen on an empty query
    QSqlRecord rec = db.record(q);
    QVERIFY(rec.isEmpty());
    Q3SqlRecordInfo rInf = db.recordInfo(q);
    QVERIFY(rInf.isEmpty());

    QVERIFY_SQL(q, exec("create table " + qTableName("qtest_temp", __FILE__) + " (id int)"));

    // query without result set should return empty record
    rec = db.record(q);
    QVERIFY(rec.isEmpty());
    rInf = db.recordInfo(q);
    QVERIFY(rInf.isEmpty());
#endif
}

void tst_QSqlDatabase::tables()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString qtest(qTableName("qtest", __FILE__)), qtest_view(qTableName("qtest_view", __FILE__)), temp_tab(qTableName("test_tab", __FILE__));

    bool views = true;
    bool tempTables = false;

    QSqlQuery q(db);
    if ( db.driverName().startsWith( "QMYSQL" ) && tst_Databases::getMySqlVersion( db ).section( QChar('.'), 0, 0 ).toInt()<5 )
        QSKIP( "Test requires MySQL >= 5.0", SkipSingle );


    if (!q.exec("CREATE VIEW " + qtest_view + " as select * from " + qtest)) {
        qDebug(QString("DBMS '%1' cannot handle VIEWs: %2").arg(
                tst_Databases::dbToString(db)).arg(QString(tst_Databases::printError(q.lastError()))).toLatin1());
        views = false;
    }

    if (db.driverName().startsWith("QSQLITE3")) {
        QVERIFY_SQL(q, exec("CREATE TEMPORARY TABLE " + temp_tab + " (id int)"));
        tempTables = true;
    }

    QStringList tables = db.tables(QSql::Tables);
    QVERIFY(tables.contains(qtest, Qt::CaseInsensitive));
    QVERIFY(!tables.contains("sql_features", Qt::CaseInsensitive)); //check for postgres 7.4 internal tables
    if (views) {
        QVERIFY(!tables.contains(qtest_view, Qt::CaseInsensitive));
    }
    if (tempTables)
        QVERIFY(tables.contains(temp_tab, Qt::CaseInsensitive));

    tables = db.tables(QSql::Views);
    if (views) {
        if(!tables.contains(qtest_view, Qt::CaseInsensitive))
            qDebug() << "failed to find" << qtest_view << "in" << tables;
        QVERIFY(tables.contains(qtest_view, Qt::CaseInsensitive));
    }
    if (tempTables)
        QVERIFY(!tables.contains(temp_tab, Qt::CaseInsensitive));
    QVERIFY(!tables.contains(qtest, Qt::CaseInsensitive));

    tables = db.tables(QSql::SystemTables);
    QVERIFY(!tables.contains(qtest, Qt::CaseInsensitive));
    QVERIFY(!tables.contains(qtest_view, Qt::CaseInsensitive));
    QVERIFY(!tables.contains(temp_tab, Qt::CaseInsensitive));

    tables = db.tables(QSql::AllTables);
    if (views)
        QVERIFY(tables.contains(qtest_view, Qt::CaseInsensitive));
    if (tempTables)
        QVERIFY(tables.contains(temp_tab, Qt::CaseInsensitive));
    QVERIFY(tables.contains(qtest, Qt::CaseInsensitive));

    if (db.driverName().startsWith("QPSQL")) {
        QVERIFY(tables.contains(qtest + " test"));
    }
}

void tst_QSqlDatabase::whitespaceInIdentifiers()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (testWhiteSpaceNames(db.driverName())) {
        const QString tableName(qTableName("qtest", __FILE__) + " test");
        QVERIFY(db.tables().contains(tableName, Qt::CaseInsensitive));

        QSqlRecord rec = db.record(db.driver()->escapeIdentifier(tableName, QSqlDriver::TableName));
        QCOMPARE(rec.count(), 1);
        QCOMPARE(rec.fieldName(0), QString("test test"));
        if(db.driverName().startsWith("QOCI"))
            QCOMPARE(rec.field(0).type(), QVariant::Double);
        else
            QCOMPARE(rec.field(0).type(), QVariant::Int);

        QSqlIndex idx = db.primaryIndex(db.driver()->escapeIdentifier(tableName, QSqlDriver::TableName));
        QCOMPARE(idx.count(), 1);
        QCOMPARE(idx.fieldName(0), QString("test test"));
        if(db.driverName().startsWith("QOCI"))
            QCOMPARE(idx.field(0).type(), QVariant::Double);
        else
            QCOMPARE(idx.field(0).type(), QVariant::Int);
    } else {
        QSKIP("DBMS does not support whitespaces in identifiers", SkipSingle);
    }
}

void tst_QSqlDatabase::alterTable()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    const QString qtestalter(qTableName("qtestalter", __FILE__));

    QSqlQuery q(db);

    QVERIFY_SQL(q, exec("create table " + qtestalter + " (F1 char(20), F2 char(20), F3 char(20))"));
    QSqlRecord rec = db.record(qtestalter);
    QCOMPARE((int)rec.count(), 3);
#ifdef QT3_SUPPORT
    Q3SqlRecordInfo rinf = db.recordInfo(qtestalter);
    QCOMPARE((int)rinf.count(), 3);
#endif


    int i;
    for (i = 0; i < 3; ++i) {
        QCOMPARE(rec.field(i).name().toUpper(), QString("F%1").arg(i + 1));
#ifdef QT3_SUPPORT
        QCOMPARE(rinf[ i ].name().upper(), QString("F%1").arg(i + 1));
#endif
    }

    if (!q.exec("alter table " + qtestalter + " drop column F2")) {
        QSKIP("DBMS doesn't support dropping columns in ALTER TABLE statement", SkipSingle);
    }

    rec = db.record(qtestalter);
#ifdef QT3_SUPPORT
    rinf = db.recordInfo(qtestalter);
#endif

    QCOMPARE((int)rec.count(), 2);
#ifdef QT3_SUPPORT
    QCOMPARE((int)rinf.count(), 2);
#endif

    QCOMPARE(rec.field(0).name().toUpper(), QString("F1"));
    QCOMPARE(rec.field(1).name().toUpper(), QString("F3"));
#ifdef QT3_SUPPORT
    QCOMPARE(rinf[ 0 ].name().upper(), QString("F1"));
    QCOMPARE(rinf[ 1 ].name().upper(), QString("F3"));
#endif

    q.exec("select * from " + qtestalter);

#ifdef QT3_SUPPORT
    rec = db.record(q);
    rinf = db.recordInfo(q);

    QCOMPARE((int)rec.count(), 2);
    QCOMPARE((int)rinf.count(), 2);

    QCOMPARE(rec.field(0).name().upper(), QString("F1"));
    QCOMPARE(rec.field(1).name().upper(), QString("F3"));
    QCOMPARE(rinf[ 0 ].name().upper(), QString("F1"));
    QCOMPARE(rinf[ 1 ].name().upper(), QString("F3"));
#endif
}

#if 0
// this is the general test that should work on all databases.
// unfortunately no DBMS supports SQL 92/ 99 so the general
// test is more or less a joke. Please write a test for each
// database plugin (see recordOCI and so on). Use this test
// as a template.
void tst_QSqlDatabase::record()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    static const FieldDef fieldDefs[] = {
        FieldDef("char(20)", QVariant::String,         QString("blah1"), false),
        FieldDef("varchar(20)", QVariant::String,      QString("blah2"), false),
        FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

// doesn't work with oracle:   checkNullValues(fieldDefs, db);
    commonFieldTest(fieldDefs, db, fieldCount);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
        checkValues(fieldDefs, db);
    }
}
#endif

#ifdef QT3_SUPPORT
void tst_QSqlDatabase::testRecordInfo(const FieldDef fieldDefs[], const Q3SqlRecordInfo& inf)
{
    int i = 0;
    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        QCOMPARE(inf[i+1].name().upper(), fieldDefs[ i ].fieldName().upper());
        if (inf[i+1].type() != fieldDefs[ i ].type) {
            QFAIL(QString(" Expected: '%1' Received: '%2' for field %3 in testRecordInfo").arg(
            QVariant::typeToName(fieldDefs[ i ].type)).arg(
              QVariant::typeToName(inf[i+1].type())).arg(
            fieldDefs[ i ].fieldName()));
        }
    }
}
#endif

void tst_QSqlDatabase::testRecord(const FieldDef fieldDefs[], const QSqlRecord& inf, QSqlDatabase db)
{
    int i = 0;
    if (!tst_Databases::autoFieldName(db).isEmpty()) // Currently only MySQL is tested
        QVERIFY2(inf.field(i).isAutoValue(), qPrintable(inf.field(i).name() + " should be reporting as an autovalue"));
    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        QCOMPARE(inf.field(i+1).name().toUpper(), fieldDefs[ i ].fieldName().toUpper());
        if (inf.field(i+1).type() != fieldDefs[ i ].type) {
            QFAIL(qPrintable(QString(" Expected: '%1' Received: '%2' for field %3 in testRecord").arg(
              QVariant::typeToName(fieldDefs[ i ].type)).arg(
            QVariant::typeToName(inf.field(i+1).type())).arg(
              fieldDefs[ i ].fieldName())));
        }
        QVERIFY(!inf.field(i+1).isAutoValue());

//	qDebug(QString(" field: %1 type: %2 variant type: %3").arg(fieldDefs[ i ].fieldName()).arg(QVariant::typeToName(inf.field(i+1)->type())).arg(QVariant::typeToName(inf.field(i+1)->value().type())));
    }
}

// non-dbms specific tests
void tst_QSqlDatabase::commonFieldTest(const FieldDef fieldDefs[], QSqlDatabase db, const int fieldCount)
{
    CHECK_DATABASE(db);

    // check whether recordInfo returns the right types
#ifdef QT3_SUPPORT
    Q3SqlRecordInfo inf = db.recordInfo(qTableName("qtestfields", __FILE__));
    QCOMPARE((int)inf.count(), fieldCount+1);
    testRecordInfo(fieldDefs, inf);
#endif

    QSqlRecord rec = db.record(qTableName("qtestfields", __FILE__));
    QCOMPARE((int)rec.count(), fieldCount+1);
    testRecord(fieldDefs, rec, db);

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("select * from " + qTableName("qtestfields", __FILE__)));

#ifdef QT3_SUPPORT
    inf = db.recordInfo(q);
    QCOMPARE((int)inf.count(), fieldCount+1);
    testRecordInfo(fieldDefs, inf);

    rec = db.record(q);
    QCOMPARE((int)rec.count(), fieldCount+1);
    testRecord(fieldDefs, rec, db);
#endif
}

// inserts testdata into the testtable, fetches and compares them
void tst_QSqlDatabase::checkValues(const FieldDef fieldDefs[], QSqlDatabase db)
{
    Q_UNUSED(fieldDefs);
#ifdef QT3_SUPPORT
    CHECK_DATABASE(db);

    Q3SqlCursor cur(qTableName("qtestfields", __FILE__), true, db);
    QVERIFY_SQL(cur, select());
    QSqlRecord* rec = cur.primeInsert();
    Q_ASSERT(rec);
    rec->setValue("id", pkey++);
    int i = 0;
    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        rec->setValue(fieldDefs[ i ].fieldName(), fieldDefs[ i ].val);
//     qDebug(QString("inserting %1 into %2").arg(fieldDefs[ i ].val.toString()).arg(fieldDefs[ i ].fieldName()));
    }
    QVERIFY_SQL(cur, insert());
    cur.setForwardOnly(true);
    QVERIFY_SQL(cur, select("id = " + QString::number(pkey - 1)));
    QVERIFY_SQL(cur, next());

    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        bool ok = false;
        QVariant val1 = cur.value(fieldDefs[ i ].fieldName());
        QVariant val2 = fieldDefs[ i ].val;
        if (val1.type() == QVariant::String)
            //TDS Workaround
            val1 = val1.toString().stripWhiteSpace();
        if (fieldDefs[ i ].fieldName() == "t_real") {
            // strip precision
            val1 = (float)val1.toDouble();
            val2 = (float)val2.toDouble();
        }
        if (val1.canCast(QVariant::Double) && val2.type() == QVariant::Double) {
            // we don't care about precision here, we just want to know whether
            // we can insert/fetch the right values
            ok = (val1.toDouble() - val2.toDouble() < 0.00001);
        } else if (val1.type() == val2.type()) {
                ok = (val1 == val2);
        } else {
            ok = (val1.toString() == val2.toString());
        }
        if (!ok) {
            if (val2.type() == QVariant::DateTime || val2.type() == QVariant::Time)
               qDebug("Expected Time: " + val2.toTime().toString("hh:mm:ss.zzz"));
            if (val1.type() == QVariant::DateTime || val1.type() == QVariant::Time)
               qDebug("Received Time: " + val1.toTime().toString("hh:mm:ss.zzz"));
            QFAIL(QString(" Expected: '%1' Received: '%2' for field %3 (etype %4 rtype %5) in checkValues").arg(
            val2.type() == QVariant::ByteArray ? val2.toByteArray().toHex() : val2.toString()).arg(
            val1.type() == QVariant::ByteArray ? val1.toByteArray().toHex() : val1.toString()).arg(
            fieldDefs[ i ].fieldName()).arg(
            val2.typeName()).arg(
            val1.typeName())
            );
        }
    }
#endif
}

// inserts a NULL value for each nullable field in testdata, fetches and checks whether
// we get back NULL
void tst_QSqlDatabase::checkNullValues(const FieldDef fieldDefs[], QSqlDatabase db)
{
    Q_UNUSED(fieldDefs);
#ifdef QT3_SUPPORT
    CHECK_DATABASE(db);

    Q3SqlCursor cur(qTableName("qtestfields", __FILE__), true, db);
    QVERIFY_SQL(cur, select());
    QSqlRecord* rec = cur.primeInsert();
    Q_ASSERT(rec);
    rec->setValue("id", pkey++);
    int i = 0;
    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        if (fieldDefs[ i ].fieldName(), fieldDefs[ i ].nullable)
            rec->setNull(fieldDefs[ i ].fieldName());
        else
            rec->setValue(fieldDefs[ i ].fieldName(), fieldDefs[ i ].val);
    }
    QVERIFY_SQL(cur, insert());
    cur.setForwardOnly(true);
    QVERIFY_SQL(cur, select("id = " + QString::number(pkey - 1)));
    QVERIFY_SQL(cur, next());

    for (i = 0; !fieldDefs[ i ].typeName.isNull(); ++i) {
        if (fieldDefs[ i ].nullable == false)
            continue;
        // multiple inheritance sucks so much
        QVERIFY2(((QSqlQuery)cur).isNull(i + 1), "Check whether '" + fieldDefs[ i ].fieldName() + "' is null in QSqlQuery");
        QVERIFY2(((QSqlRecord)cur).isNull(fieldDefs[ i ].fieldName()), "Check whether '" + fieldDefs[ i ].fieldName() + "' is null in QSqlRecord");
        if (!cur.value(fieldDefs[ i ].fieldName()).isNull())
            qDebug(QString("QVariant is not null for NULL-Value in Field '%1'").arg(fieldDefs[ i ].fieldName()));
    }
#endif
}

void tst_QSqlDatabase::recordTDS()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    static const FieldDef fieldDefs[] = {
    FieldDef("tinyint", QVariant::Int,		255),
    FieldDef("smallint", QVariant::Int,		32767),
    FieldDef("int", QVariant::Int,			2147483647),
    FieldDef("numeric(10,9)", QVariant::Double,	1.23456789),
    FieldDef("decimal(10,9)", QVariant::Double,	1.23456789),
    FieldDef("float(4)", QVariant::Double,		1.23456789),
    FieldDef("double precision", QVariant::Double,	1.23456789),
    FieldDef("real", QVariant::Double,		1.23456789),
    FieldDef("smallmoney", QVariant::Double,	100.42),
    FieldDef("money", QVariant::Double,		200.42),
    // accuracy is that of a minute
    FieldDef("smalldatetime", QVariant::DateTime,	QDateTime(QDate::currentDate(), QTime(1, 2, 0, 0))),
    // accuracy is that of a second
    FieldDef("datetime", QVariant::DateTime,	QDateTime(QDate::currentDate(), QTime(1, 2, 3, 0))),
    FieldDef("char(20)", QVariant::String,		"blah1"),
    FieldDef("varchar(20)", QVariant::String,	"blah2"),
    FieldDef("nchar(20)", QVariant::String,	"blah3"),
    FieldDef("nvarchar(20)", QVariant::String,	"blah4"),
    FieldDef("text", QVariant::String,		"blah5"),
#ifdef QT3_SUPPORT
    FieldDef("binary(20)", QVariant::ByteArray,	Q3CString("blah6")),
    FieldDef("varbinary(20)", QVariant::ByteArray, Q3CString("blah7")),
    FieldDef("image", QVariant::ByteArray,		Q3CString("blah8")),
#endif
    FieldDef("bit", QVariant::Int,			1, false),

    FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
    checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordOCI()
{
    bool hasTimeStamp = false;

    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    // runtime check for Oracle version since V8 doesn't support TIMESTAMPs
    if (tst_Databases::getOraVersion(db) >= 9)
        hasTimeStamp = true;

    FieldDef tsdef;
    FieldDef tstzdef;
    FieldDef tsltzdef;
    FieldDef intytm;
    FieldDef intdts;

    static const QDateTime dt(QDate::currentDate(), QTime(1, 2, 3, 0));

    if (hasTimeStamp) {
        tsdef = FieldDef("timestamp", QVariant::DateTime,  dt);
        tstzdef = FieldDef("timestamp with time zone", QVariant::DateTime, dt);
        tsltzdef = FieldDef("timestamp with local time zone", QVariant::DateTime, dt);
        intytm = FieldDef("interval year to month", QVariant::String, QString("+01-01"));
        intdts = FieldDef("interval day to second", QVariant::String, QString("+01 00:00:01.000000"));
    }

    const FieldDef fieldDefs[] = {
        FieldDef("char(20)", QVariant::String,          QString("blah1")),
        FieldDef("varchar(20)", QVariant::String,       QString("blah2")),
        FieldDef("nchar(20)", QVariant::String,         QString("blah3")),
        FieldDef("nvarchar2(20)", QVariant::String,     QString("blah4")),
        FieldDef("number(10,5)", QVariant::Double,      1.1234567),
        FieldDef("date", QVariant::DateTime,            dt),
        FieldDef("long raw", QVariant::ByteArray,       QByteArray("blah5")),
        FieldDef("raw(2000)", QVariant::ByteArray,      QByteArray("blah6"), false),
        FieldDef("blob", QVariant::ByteArray,           QByteArray("blah7")),
        FieldDef("clob", QVariant::String,             QString("blah8")),
        FieldDef("nclob", QVariant::String,            QString("blah9")),
//        FieldDef("bfile", QVariant::ByteArray,         QByteArray("blah10")),

        intytm,
        intdts,
        tsdef,
        tstzdef,
        tsltzdef,
        FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i)
        checkValues(fieldDefs, db);

    // some additional tests
    QSqlRecord rec = db.record(qTableName("qtestfields", __FILE__));
    QCOMPARE(rec.field("T_NUMBER").length(), 10);
    QCOMPARE(rec.field("T_NUMBER").precision(), 5);

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("SELECT * FROM " + qTableName("qtestfields", __FILE__)));
    rec = q.record();
    QCOMPARE(rec.field("T_NUMBER").length(), 10);
    QCOMPARE(rec.field("T_NUMBER").precision(), 5);
}

void tst_QSqlDatabase::recordPSQL()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    FieldDef byteadef;
    if (db.driver()->hasFeature(QSqlDriver::BLOB))
#ifdef QT3_SUPPORT
    byteadef = FieldDef("bytea", QVariant::ByteArray, QByteArray(Q3CString("bl\\ah")));
#else
        byteadef = FieldDef("bytea", QVariant::ByteArray, QByteArray("bl\\ah"));
#endif
    static FieldDef fieldDefs[] = {
    FieldDef("bigint", QVariant::LongLong,	Q_INT64_C(9223372036854775807)),
    FieldDef("bigserial", QVariant::LongLong, 100, false),
    FieldDef("bit", QVariant::String,	"1"), // a bit in postgres is a bit-string
#ifdef QT3_SUPPORT
    FieldDef("boolean", QVariant::Bool,	QVariant(bool(true), 0)),
#endif
    FieldDef("box", QVariant::String,	"(5,6),(1,2)"),
    FieldDef("char(20)", QVariant::String, "blah5678901234567890"),
    FieldDef("varchar(20)", QVariant::String, "blah5678901234567890"),
    FieldDef("cidr", QVariant::String,	"12.123.0.0/24"),
    FieldDef("circle", QVariant::String,	"<(1,2),3>"),
    FieldDef("date", QVariant::Date,	QDate::currentDate()),
    FieldDef("float8", QVariant::Double,	1.12345678912),
    FieldDef("inet", QVariant::String,	"12.123.12.23"),
    FieldDef("integer", QVariant::Int,	2147483647),
    FieldDef("interval", QVariant::String, "1 day 12:59:10"),
//	LOL... you can create a "line" datatype in PostgreSQL <= 7.2.x but
//	as soon as you want to insert data you get a "not implemented yet" error
//	FieldDef("line", QVariant::Polygon, QPolygon(QRect(1, 2, 3, 4))),
    FieldDef("lseg", QVariant::String,     "[(1,1),(2,2)]"),
    FieldDef("macaddr", QVariant::String, "08:00:2b:01:02:03"),
    FieldDef("money", QVariant::String,	"$12.23"),
    FieldDef("numeric", QVariant::Double,  1.2345678912),
    FieldDef("path", QVariant::String,	"((1,2),(3,2),(3,5),(1,5))"),
    FieldDef("point", QVariant::String,	"(1,2)"),
    FieldDef("polygon", QVariant::String,	"((1,2),(3,2),(3,5),(1,5))"),
    FieldDef("real", QVariant::Double,	1.1234),
    FieldDef("smallint", QVariant::Int,	32767),
    FieldDef("serial", QVariant::Int,	100, false),
    FieldDef("text", QVariant::String,	"blah"),
    FieldDef("time(6)", QVariant::Time,	QTime(1, 2, 3)),
    FieldDef("timetz", QVariant::Time,	QTime(1, 2, 3)),
    FieldDef("timestamp(6)", QVariant::DateTime, QDateTime::currentDateTime()),
    FieldDef("timestamptz", QVariant::DateTime, QDateTime::currentDateTime()),
    byteadef,

    FieldDef()
    };

    QSqlQuery q(db);

    if(tst_Databases::isPostgreSQL(db))
        QVERIFY_SQL( q, exec("set client_min_messages='warning'"));

    q.exec("drop sequence " + qTableName("qtestfields", __FILE__) + "_t_bigserial_seq");
    q.exec("drop sequence " + qTableName("qtestfields", __FILE__) + "_t_serial_seq");
    // older psql cut off the table name
    q.exec("drop sequence " + qTableName("qtestfields", __FILE__).left(15) + "_t_bigserial_seq");
    q.exec("drop sequence " + qTableName("qtestfields", __FILE__).left(18) + "_t_serial_seq");

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
    // increase serial values
    for (int i2 = 0; !fieldDefs[ i2 ].typeName.isNull(); ++i2) {
        if (fieldDefs[ i2 ].typeName == "serial" ||
         fieldDefs[ i2 ].typeName == "bigserial") {

        FieldDef def = fieldDefs[ i2 ];
#ifdef QT3_SUPPORT
        def.val = def.val.asInt() + 1;
#else
        def.val = def.val.toInt() + 1;
#endif
        fieldDefs[ i2 ] = def;
        }
    }
    checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordMySQL()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    FieldDef bin10, varbin10;
    int major = tst_Databases::getMySqlVersion( db ).section( QChar('.'), 0, 0 ).toInt();
    int minor = tst_Databases::getMySqlVersion( db ).section( QChar('.'), 1, 1 ).toInt();
    int revision = tst_Databases::getMySqlVersion( db ).section( QChar('.'), 2, 2 ).toInt();
    int vernum = (major << 16) + (minor << 8) + revision;

    /* The below is broken in mysql below 5.0.15
        see http://dev.mysql.com/doc/refman/5.0/en/binary-varbinary.html
        specifically: Before MySQL 5.0.15, the pad value is space. Values are right-padded
        with space on insert, and trailing spaces are removed on select.
    */
    if( vernum >= ((5 << 16) + 15) ) {
#ifdef QT3_SUPPORT
        bin10 = FieldDef("binary(10)", QVariant::ByteArray, QByteArray(Q3CString("123abc    ")));
        varbin10 = FieldDef("varbinary(10)", QVariant::ByteArray, QByteArray(Q3CString("123abcv   ")));
#else
        bin10 = FieldDef("binary(10)", QVariant::ByteArray, QString("123abc    "));
        varbin10 = FieldDef("varbinary(10)", QVariant::ByteArray, QString("123abcv   "));
#endif
    }

    static QDateTime dt(QDate::currentDate(), QTime(1, 2, 3, 0));
    static const FieldDef fieldDefs[] = {
    FieldDef("tinyint", QVariant::Int,	    127),
    FieldDef("tinyint unsigned", QVariant::UInt, 255),
    FieldDef("smallint", QVariant::Int,	    32767),
    FieldDef("smallint unsigned", QVariant::UInt, 65535),
    FieldDef("mediumint", QVariant::Int,	    8388607),
    FieldDef("mediumint unsigned", QVariant::UInt, 16777215),
    FieldDef("integer", QVariant::Int,	    2147483647),
    FieldDef("integer unsigned", QVariant::UInt, 4294967295u),
    FieldDef("bigint", QVariant::LongLong,	    Q_INT64_C(9223372036854775807)),
    FieldDef("bigint unsigned", QVariant::ULongLong, Q_UINT64_C(18446744073709551615)),
    FieldDef("float", QVariant::Double,	    1.12345),
    FieldDef("double", QVariant::Double,	    1.123456789),
    FieldDef("decimal(10, 9)", QVariant::Double,1.123456789),
    FieldDef("numeric(5, 2)", QVariant::Double, 123.67),
    FieldDef("date", QVariant::Date,	    QDate::currentDate()),
    FieldDef("datetime", QVariant::DateTime,   dt),
    FieldDef("timestamp", QVariant::DateTime,  dt, false),
    FieldDef("time", QVariant::Time,	    dt.time()),
    FieldDef("year", QVariant::Int,	    2003),
    FieldDef("char(20)", QVariant::String,	    "Blah"),
    FieldDef("varchar(20)", QVariant::String,  "BlahBlah"),
#ifdef QT3_SUPPORT
    FieldDef("tinyblob", QVariant::ByteArray,  QByteArray(Q3CString("blah1"))),
    FieldDef("blob", QVariant::ByteArray,	    QByteArray(Q3CString("blah2"))),
    FieldDef("mediumblob", QVariant::ByteArray,QByteArray(Q3CString("blah3"))),
    FieldDef("longblob", QVariant::ByteArray,  QByteArray(Q3CString("blah4"))),
#endif
    FieldDef("tinytext", QVariant::String,    QString("blah5")),
    FieldDef("text", QVariant::String,	    QString("blah6")),
    FieldDef("mediumtext", QVariant::String,  QString("blah7")),
    FieldDef("longtext", QVariant::String,    QString("blah8")),
#ifdef QT3_SUPPORT
    bin10,
    varbin10,
#endif
    // SET OF?

    FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
    checkValues(fieldDefs, db);
    }

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("SELECT DATE_SUB(CURDATE(), INTERVAL 2 DAY)"));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toDateTime().date(), QDate::currentDate().addDays(-2));
}

void tst_QSqlDatabase::recordDB2()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    static const FieldDef fieldDefs[] = {
    FieldDef("char(20)", QVariant::String,		QString("Blah1")),
    FieldDef("varchar(20)", QVariant::String,	QString("Blah2")),
    FieldDef("long varchar", QVariant::String,	QString("Blah3")),
    // using BOOLEAN results in "SQL0486N  The BOOLEAN data type is currently only supported internally."
//X	FieldDef("boolean" , QVariant::Bool,		QVariant(true, 1)),
    FieldDef("smallint", QVariant::Int,		32767),
    FieldDef("integer", QVariant::Int,		2147483647),
    FieldDef("bigint", QVariant::LongLong,		Q_INT64_C(9223372036854775807)),
    FieldDef("real", QVariant::Double,		1.12345),
    FieldDef("double", QVariant::Double,		1.23456789),
    FieldDef("float", QVariant::Double,		1.23456789),
    FieldDef("decimal(10,9)", QVariant::Double,    1.234567891),
    FieldDef("numeric(10,9)", QVariant::Double,    1.234567891),
    FieldDef("date", QVariant::Date,		QDate::currentDate()),
    FieldDef("time", QVariant::Time,		QTime(1, 2, 3)),
    FieldDef("timestamp", QVariant::DateTime,	QDateTime::currentDateTime()),
//     FieldDef("graphic(20)", QVariant::String,	QString("Blah4")),
//     FieldDef("vargraphic(20)", QVariant::String,	QString("Blah5")),
//     FieldDef("long vargraphic", QVariant::String,	QString("Blah6")),
#ifdef QT3_SUPPORT
//     FieldDef("clob(20)", QVariant::CString,	QString("Blah7")),
//     FieldDef("dbclob(20)", QVariant::CString,	QString("Blah8")),
//     FieldDef("blob(20)", QVariant::ByteArray,	QByteArray(Q3CString("Blah9"))),
#endif
    //X	FieldDef("datalink", QVariant::String,		QString("DLVALUE('Blah10')")),
    FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
    checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordIBase()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    static const FieldDef fieldDefs[] = {
        FieldDef("char(20)", QVariant::String, QString("Blah1"), false),
        FieldDef("varchar(20)", QVariant::String, QString("Blah2")),
        FieldDef("smallint", QVariant::Int, 32767),
        FieldDef("float", QVariant::Double, 1.2345),
        FieldDef("double precision", QVariant::Double, 1.2345678),
        FieldDef("timestamp", QVariant::DateTime, QDateTime::currentDateTime()),
        FieldDef("time", QVariant::Time, QTime::currentTime()),
        FieldDef("decimal(18)", QVariant::LongLong, Q_INT64_C(9223372036854775807)),
        FieldDef("numeric(5,2)", QVariant::Double, 123.45),

        FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
        checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordSQLite()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    static const FieldDef fieldDefs[] = {
        // The affinity of these fields are TEXT so SQLite should give us strings, not ints or doubles.
        FieldDef("char(20)", QVariant::String,          QString("123")),
        FieldDef("varchar(20)", QVariant::String,       QString("123.4")),
        FieldDef("clob", QVariant::String,              QString("123.45")),
        FieldDef("text", QVariant::String,              QString("123.456")),

        FieldDef("integer", QVariant::Int,              QVariant(13)),
        FieldDef("int", QVariant::Int,                  QVariant(12)),
        FieldDef("real", QVariant::String,              QVariant(1.234567890123456)),

        FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
        checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordSQLServer()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!tst_Databases::isSqlServer(db)) {
    QSKIP("SQL server specific test", SkipSingle);
    return;
    }

    // ### TODO: Add the rest of the fields
    static const FieldDef fieldDefs[] = {
        FieldDef("varchar(20)", QVariant::String, QString("Blah1")),
        FieldDef("bigint", QVariant::LongLong, 12345),
        FieldDef("int", QVariant::Int, 123456),
        FieldDef("tinyint", QVariant::UInt, 255),
#ifdef QT3_SUPPORT
        FieldDef("image", QVariant::ByteArray, Q3CString("Blah1")),
#endif
        FieldDef("float", QVariant::Double, 1.12345),
        FieldDef("numeric(5,2)", QVariant::Double, 123.45),
        FieldDef("uniqueidentifier", QVariant::String,
            QString("AA7DF450-F119-11CD-8465-00AA00425D90")),

        FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
        checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::recordAccess()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!tst_Databases::isMSAccess(db)) {
    QSKIP("MS Access specific test", SkipSingle);
    return;
    }

    QString memo;
    for (int i = 0; i < 32; i++)
        memo.append("ABCDEFGH12345678abcdefgh12345678");

    // ### TODO: Add the rest of the fields
    static const FieldDef fieldDefs[] = {
    FieldDef("varchar(20)", QVariant::String, QString("Blah1")),
    FieldDef("single", QVariant::Double, 1.12345),
    FieldDef("double", QVariant::Double, 1.123456),
    FieldDef("byte", QVariant::UInt, 255),
#ifdef QT3_SUPPORT
    FieldDef("binary(5)", QVariant::ByteArray, Q3CString("Blah2")),
#endif
    FieldDef("long", QVariant::Int, 2147483647),
        FieldDef("memo", QVariant::String, memo),
    FieldDef()
    };

    const int fieldCount = createFieldTable(fieldDefs, db);
    QVERIFY(fieldCount > 0);

    commonFieldTest(fieldDefs, db, fieldCount);
    checkNullValues(fieldDefs, db);
    for (int i = 0; i < ITERATION_COUNT; ++i) {
        checkValues(fieldDefs, db);
    }
}

void tst_QSqlDatabase::transaction()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    const QString qtest(qTableName("qtest", __FILE__));

    if (!db.driver()->hasFeature(QSqlDriver::Transactions)) {
    QSKIP("DBMS not transaction capable", SkipSingle);
    }

    QVERIFY(db.transaction());

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("insert into " + qtest + " values (40, 'VarChar40', 'Char40', 40.40)"));
    QVERIFY_SQL(q, exec("select * from " + qtest + " where id = 40"));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toInt(), 40);
    q.clear();

    QVERIFY(db.commit());

    QVERIFY(db.transaction());
    QVERIFY_SQL(q, exec("select * from " + qtest + " where id = 40"));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toInt(), 40);
    q.clear();
    QVERIFY(db.commit());

    QVERIFY(db.transaction());
    QVERIFY_SQL(q, exec("insert into " + qtest + " values (41, 'VarChar41', 'Char41', 41.41)"));
    QVERIFY_SQL(q, exec("select * from " + qtest + " where id = 41"));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toInt(), 41);
    q.clear(); // for SQLite which does not allow any references on rows that shall be rolled back
    if (!db.rollback()) {
    if (db.driverName().startsWith("QMYSQL")) {
        qDebug("MySQL: " + tst_Databases::printError(db.lastError()));
        QSKIP("MySQL transaction failed ", SkipSingle); //non-fatal
    } else {
        QFAIL("Could not rollback transaction: " + tst_Databases::printError(db.lastError()));
        }
    }

    QVERIFY_SQL(q, exec("select * from " + qtest + " where id = 41"));
    if(db.driverName().startsWith("QODBC") && dbName.contains("MySQL"))
        QEXPECT_FAIL("", "Some odbc drivers don't actually roll back despite telling us they do, especially the mysql driver", Continue);
    QVERIFY(!q.next());

    populateTestTables(db);
}

void tst_QSqlDatabase::bigIntField()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    QString drvName = db.driverName();
    const QString qtest_bigint(qTableName("qtest_bigint", __FILE__));

    QSqlQuery q(db);
    q.setForwardOnly(true);
    if (drvName.startsWith("QOCI"))
        q.setNumericalPrecisionPolicy(QSql::LowPrecisionInt64);

    if (drvName.startsWith("QMYSQL")) {
        QVERIFY_SQL(q, exec("create table " + qtest_bigint + " (id int, t_s64bit bigint, t_u64bit bigint unsigned)"));
    } else if (drvName.startsWith("QPSQL")
                || drvName.startsWith("QDB2")
                || tst_Databases::isSqlServer(db)) {
        QVERIFY_SQL(q, exec("create table " + qtest_bigint + "(id int, t_s64bit bigint, t_u64bit bigint)"));
    } else if (drvName.startsWith("QOCI")) {
        QVERIFY_SQL(q, exec("create table " + qtest_bigint + " (id int, t_s64bit int, t_u64bit int)"));
    //} else if (drvName.startsWith("QIBASE")) {
    //    QVERIFY_SQL(q, exec("create table " + qtest_bigint + " (id int, t_s64bit int64, t_u64bit int64)"));
    } else {
        QSKIP("no 64 bit integer support", SkipAll);
    }
    QVERIFY(q.prepare("insert into " + qtest_bigint + " values (?, ?, ?)"));
    qlonglong ll = Q_INT64_C(9223372036854775807);
    qulonglong ull = Q_UINT64_C(18446744073709551615);

    if (drvName.startsWith("QMYSQL") || drvName.startsWith("QOCI")) {
        q.bindValue(0, 0);
        q.bindValue(1, ll);
        q.bindValue(2, ull);
        QVERIFY_SQL(q, exec());
        q.bindValue(0, 1);
        q.bindValue(1, -ll);
        q.bindValue(2, ull);
        QVERIFY_SQL(q, exec());
    } else {
        // usinged bigint fields not supported - a cast is necessary
        q.bindValue(0, 0);
        q.bindValue(1, ll);
        q.bindValue(2, (qlonglong) ull);
        QVERIFY_SQL(q, exec());
        q.bindValue(0, 1);
        q.bindValue(1, -ll);
        q.bindValue(2,  (qlonglong) ull);
        QVERIFY_SQL(q, exec());
    }
    QVERIFY(q.exec("select * from " + qtest_bigint + " order by id"));
    QVERIFY(q.next());
    QCOMPARE(q.value(1).toDouble(), (double)ll);
    QCOMPARE(q.value(1).toLongLong(), ll);
    if(drvName.startsWith("QOCI"))
        QEXPECT_FAIL("", "Oracle driver lacks support for unsigned int64 types", Continue);
    QCOMPARE(q.value(2).toULongLong(), ull);
    QVERIFY(q.next());
    QCOMPARE(q.value(1).toLongLong(), -ll);
    if(drvName.startsWith("QOCI"))
        QEXPECT_FAIL("", "Oracle driver lacks support for unsigned int64 types", Continue);
    QCOMPARE(q.value(2).toULongLong(), ull);
}

void tst_QSqlDatabase::caseSensivity()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    bool cs = false;
    if (db.driverName().startsWith("QMYSQL")
     || db.driverName().startsWith("QSQLITE")
     || db.driverName().startsWith("QTDS")
     || db.driverName().startsWith("QODBC"))
    cs = true;

    QSqlRecord rec = db.record(qTableName("qtest", __FILE__));
    QVERIFY((int)rec.count() > 0);
    if (!cs) {
    rec = db.record(qTableName("QTEST", __FILE__).toUpper());
    QVERIFY((int)rec.count() > 0);
    rec = db.record(qTableName("qTesT", __FILE__));
    QVERIFY((int)rec.count() > 0);
    }

#ifdef QT3_SUPPORT
    Q3SqlRecordInfo rInf = db.recordInfo(qTableName("qtest", __FILE__));
    QVERIFY((int)rInf.count() > 0);
    if (!cs) {
    rInf = db.recordInfo(qTableName("QTEST", __FILE__).upper());
    QVERIFY((int)rInf.count() > 0);
    rInf = db.recordInfo(qTableName("qTesT", __FILE__));
    QVERIFY((int)rInf.count() > 0);
    }
#endif

    rec = db.primaryIndex(qTableName("qtest", __FILE__));
    QVERIFY((int)rec.count() > 0);
    if (!cs) {
    rec = db.primaryIndex(qTableName("QTEST", __FILE__).toUpper());
    QVERIFY((int)rec.count() > 0);
    rec = db.primaryIndex(qTableName("qTesT", __FILE__));
    QVERIFY((int)rec.count() > 0);
    }
}

void tst_QSqlDatabase::noEscapedFieldNamesInRecord()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QString fieldname("t_varchar");
    if (db.driverName().startsWith("QOCI") || db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QDB2"))
        fieldname = fieldname.toUpper();

    QSqlQuery q(db);
    QString query = "SELECT " + db.driver()->escapeIdentifier(fieldname, QSqlDriver::FieldName) + " FROM " + qTableName("qtest", __FILE__);
    QVERIFY_SQL(q, exec(query));
    QCOMPARE(q.record().fieldName(0), fieldname);
}

void tst_QSqlDatabase::psql_schemas()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!db.tables(QSql::SystemTables).contains("pg_namespace"))
        QSKIP("server does not support schemas", SkipSingle);

    QSqlQuery q(db);

    if(tst_Databases::isPostgreSQL(db)) {
        QVERIFY_SQL( q, exec("set client_min_messages='warning'"));
    }

    QVERIFY_SQL(q, exec("CREATE SCHEMA " + qTableName("qtestschema", __FILE__)));

    QString table = qTableName("qtestschema", __FILE__) + '.' + qTableName("qtesttable", __FILE__);
    QVERIFY_SQL(q, exec("CREATE TABLE " + table + " (id int primary key, name varchar(20))"));

    QVERIFY(db.tables().contains(table));

    QSqlRecord rec = db.record(table);
    QCOMPARE(rec.count(), 2);
    QCOMPARE(rec.fieldName(0), QString("id"));
    QCOMPARE(rec.fieldName(1), QString("name"));

#ifdef QT3_SUPPORT
    rec = db.record(QSqlQuery("select * from " + table, db));
    QCOMPARE(rec.count(), 2);
    QCOMPARE(rec.fieldName(0), QString("id"));
    QCOMPARE(rec.fieldName(1), QString("name"));
#endif
    QSqlIndex idx = db.primaryIndex(table);
    QCOMPARE(idx.count(), 1);
    QCOMPARE(idx.fieldName(0), QString("id"));
}

void tst_QSqlDatabase::psql_escapedIdentifiers()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    QSqlDriver* drv = db.driver();
    CHECK_DATABASE(db);

    if (!db.tables(QSql::SystemTables).contains("pg_namespace"))
        QSKIP("server does not support schemas", SkipSingle);

    QSqlQuery q(db);

    if(tst_Databases::isPostgreSQL(db))
        QVERIFY_SQL( q, exec("set client_min_messages='warning'"));

    const QString schemaName(qTableName("qtestScHeMa", __FILE__)),
                  tableName(qTableName("qtest", __FILE__)),
                  field1Name(QLatin1String("fIeLdNaMe")),
                  field2Name(QLatin1String("ZuLu"));

    q.exec(QString("DROP SCHEMA \"%1\" CASCADE").arg(schemaName));
    QString createSchema = QString("CREATE SCHEMA \"%1\"").arg(schemaName);
    QVERIFY_SQL(q, exec(createSchema));
    QString createTable = QString("CREATE TABLE \"%1\".\"%2\" (\"%3\" int PRIMARY KEY, \"%4\" varchar(20))").arg(schemaName).arg(tableName).arg(field1Name).arg(field2Name);
    QVERIFY_SQL(q, exec(createTable));

    QVERIFY(db.tables().contains(schemaName + '.' + tableName, Qt::CaseSensitive));

    QSqlField fld1(field1Name, QVariant::Int);
    QSqlField fld2(field2Name, QVariant::String);
    QSqlRecord rec;
    rec.append(fld1);
    rec.append(fld2);

    QVERIFY_SQL(q, exec(drv->sqlStatement(QSqlDriver::SelectStatement, db.driver()->escapeIdentifier(schemaName, QSqlDriver::TableName) + '.' + db.driver()->escapeIdentifier(tableName, QSqlDriver::TableName), rec, false)));

    rec = q.record();
    QCOMPARE(rec.count(), 2);
    QCOMPARE(rec.fieldName(0), field1Name);
    QCOMPARE(rec.fieldName(1), field2Name);
    QCOMPARE(rec.field(0).type(), QVariant::Int);

    q.exec(QString("DROP SCHEMA \"%1\" CASCADE").arg(schemaName));
}

void tst_QSqlDatabase::psql_escapeBytea()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const char dta[4] = {'\x71', '\x14', '\x32', '\x81'};
    QByteArray ba(dta, 4);

    QSqlQuery q(db);
    const QString tableName(qTableName("batable", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (ba bytea)").arg(tableName)));

    QSqlQuery iq(db);
    QVERIFY_SQL(iq, prepare(QString("INSERT INTO %1 VALUES (?)").arg(tableName)));
    iq.bindValue(0, QVariant(ba));
    QVERIFY_SQL(iq, exec());

    QVERIFY_SQL(q, exec(QString("SELECT ba FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());

    QByteArray res = q.value(0).toByteArray();
    int i = 0;
    for (; i < ba.size(); ++i){
        if (ba[i] != res[i])
            break;
    }

    QCOMPARE(i, 4);
}

void tst_QSqlDatabase::bug_249059()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QString version=tst_Databases::getPSQLVersion( db );
    double ver=version.section(QChar::fromLatin1('.'),0,1).toDouble();
    if (ver < 7.3)
        QSKIP("Test requires PostgreSQL >= 7.3", SkipSingle);

    QSqlQuery q(db);
    const QString tableName(qTableName("bug_249059", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (dt timestamp, t time)").arg(tableName)));

    QSqlQuery iq(db);
    QVERIFY_SQL(iq, prepare(QString("INSERT INTO %1 VALUES (?, ?)").arg(tableName)));
    iq.bindValue(0, QVariant(QString("2001-09-09 04:05:06.789 -5:00")));
    iq.bindValue(1, QVariant(QString("04:05:06.789 -5:00")));
    QVERIFY_SQL(iq, exec());
    iq.bindValue(0, QVariant(QString("2001-09-09 04:05:06.789 +5:00")));
    iq.bindValue(1, QVariant(QString("04:05:06.789 +5:00")));
    QVERIFY_SQL(iq, exec());

    QVERIFY_SQL(q, exec(QString("SELECT dt, t FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());
    QDateTime dt1=q.value(0).toDateTime();
    QTime t1=q.value(1).toTime();
    QVERIFY_SQL(q, next());
    QDateTime dt2=q.value(0).toDateTime();
    QTime t2=q.value(1).toTime();

    // These will fail when timezone support is added, when that's the case, set the second record to 14:05:06.789 and it should work correctly
    QCOMPARE(dt1, dt2);
    QCOMPARE(t1, t2);
}

// This test should be rewritten to work with Oracle as well - or the Oracle driver
// should be fixed to make this test pass (handle overflows)
void tst_QSqlDatabase::precisionPolicy()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
//     DBMS_SPECIFIC(db, "QPSQL");

    QSqlQuery q(db);
    const QString tableName(qTableName("qtest_prec", __FILE__));
    if(!db.driver()->hasFeature(QSqlDriver::LowPrecisionNumbers))
        QSKIP("Driver or database doesn't support setting precision policy", SkipSingle);

    // Create a test table with some data
    if(tst_Databases::isMSAccess(db))
        QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (id smallint, num number)").arg(tableName)));
    else
        QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (id smallint, num numeric(18,5))").arg(tableName)));
    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?, ?)").arg(tableName)));
    q.bindValue(0, 1);
    q.bindValue(1, 123);
    QVERIFY_SQL(q, exec());
    q.bindValue(0, 2);
    q.bindValue(1, 1850000000000.0001);
    QVERIFY_SQL(q, exec());

    // These are expected to pass
    q.setNumericalPrecisionPolicy(QSql::HighPrecision);
    QString query = QString("SELECT num FROM %1 WHERE id = 1").arg(tableName);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    if(db.driverName().startsWith("QSQLITE"))
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::String);

    q.setNumericalPrecisionPolicy(QSql::LowPrecisionInt64);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    if(q.value(0).type() != QVariant::LongLong)
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::LongLong);
    QCOMPARE(q.value(0).toLongLong(), (qlonglong)123);

    q.setNumericalPrecisionPolicy(QSql::LowPrecisionInt32);
    QVERIFY_SQL(q, exec(query));
    if(db.driverName().startsWith("QOCI"))
        QEXPECT_FAIL("", "Oracle fails to move to next when data columns are oversize", Abort);
    QVERIFY_SQL(q, next());
    if(db.driverName().startsWith("QSQLITE"))
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::Int);
    QCOMPARE(q.value(0).toInt(), 123);

    q.setNumericalPrecisionPolicy(QSql::LowPrecisionDouble);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    if(db.driverName().startsWith("QSQLITE"))
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::Double);
    QCOMPARE(q.value(0).toDouble(), (double)123);

    query = QString("SELECT num FROM %1 WHERE id = 2").arg(tableName);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    if(db.driverName().startsWith("QSQLITE"))
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::Double);
    QCOMPARE(q.value(0).toDouble(), QString("1850000000000.0001").toDouble());

    // Postgres returns invalid QVariants on overflow
    q.setNumericalPrecisionPolicy(QSql::HighPrecision);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    if(db.driverName().startsWith("QSQLITE"))
        QEXPECT_FAIL("", "SQLite returns this value as determined by contents of the field, not the declaration", Continue);
    QCOMPARE(q.value(0).type(), QVariant::String);

    q.setNumericalPrecisionPolicy(QSql::LowPrecisionInt64);
    QEXPECT_FAIL("QOCI", "Oracle fails here, to retrieve next", Continue);
    QVERIFY_SQL(q, exec(query));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).type(), QVariant::LongLong);

    QSql::NumericalPrecisionPolicy oldPrecision= db.numericalPrecisionPolicy();
    db.setNumericalPrecisionPolicy(QSql::LowPrecisionInt64);
    QSqlQuery q2(db);
    q2.exec(QString("SELECT num FROM %1 WHERE id = 2").arg(tableName));
    QVERIFY_SQL(q2, exec(query));
    QVERIFY_SQL(q2, next());
    QCOMPARE(q2.value(0).type(), QVariant::LongLong);
    db.setNumericalPrecisionPolicy(oldPrecision);
}

// This test needs a ODBC data source containing MYSQL in it's name
void tst_QSqlDatabase::mysqlOdbc_unsignedIntegers()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!db.driverName().startsWith("QODBC") || !dbName.toUpper().contains("MYSQL")) {
       QSKIP("MySQL through ODBC-driver specific test", SkipSingle);
       return;
    }

    QSqlQuery q(db);
    const QString tableName(qTableName("uint", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (foo integer(10) unsigned, bar integer(10))").arg(tableName)));
    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 VALUES (-4000000000, -4000000000)").arg(tableName)));
    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 VALUES (4000000000, 4000000000)").arg(tableName)));

    QVERIFY_SQL(q, exec(QString("SELECT foo, bar FROM %1").arg(tableName)));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toString(), QString("0"));
    QCOMPARE(q.value(1).toString(), QString("-2147483648"));
    QVERIFY(q.next());
    QCOMPARE(q.value(0).toString(), QString("4000000000"));
    QCOMPARE(q.value(1).toString(), QString("2147483647"));
}

void tst_QSqlDatabase::accessOdbc_strings()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!tst_Databases::isMSAccess(db)) {
    QSKIP("MS Access specific test", SkipSingle);
    return;
    }

    QSqlQuery q(db);
    const QString tableName(qTableName("strings", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (aStr memo, bStr memo, cStr memo, dStr memo"
            ", eStr memo, fStr memo, gStr memo, hStr memo)").arg(tableName)));

    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?, ?, ?, ?, ?, ?, ?, ?)").arg(tableName)));
    QString aStr, bStr, cStr, dStr, eStr, fStr, gStr, hStr;

    q.bindValue(0, aStr.fill('A', 32));
    q.bindValue(1, bStr.fill('B', 127));
    q.bindValue(2, cStr.fill('C', 128));
    q.bindValue(3, dStr.fill('D', 129));
    q.bindValue(4, eStr.fill('E', 254));
    q.bindValue(5, fStr.fill('F', 255));
    q.bindValue(6, gStr.fill('G', 256));
    q.bindValue(7, hStr.fill('H', 512));

    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, exec(QString("SELECT aStr, bStr, cStr, dStr, eStr, fStr, gStr, hStr FROM %1").arg(tableName)));
    q.next();
    QCOMPARE(q.value(0).toString(), aStr);
    QCOMPARE(q.value(1).toString(), bStr);
    QCOMPARE(q.value(2).toString(), cStr);
    QCOMPARE(q.value(3).toString(), dStr);
    QCOMPARE(q.value(4).toString(), eStr);
    QCOMPARE(q.value(5).toString(), fStr);
    QCOMPARE(q.value(6).toString(), gStr);
    QCOMPARE(q.value(7).toString(), hStr);
}

// For task 125053
void tst_QSqlDatabase::ibase_numericFields()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);
    const QString tableName(qTableName("numericfields", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (id int not null, num1 NUMERIC(2,1), "
        "num2 NUMERIC(5,2), num3 NUMERIC(10,3), "
        "num4 NUMERIC(18,4))").arg(tableName)));

    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 VALUES (1, 1.1, 123.45, 1234567.123, 10203040506070.8090)").arg(tableName)));

    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?, ?, ?, ?, ?)").arg(tableName)));

    double num1 = 1.1;
    double num2 = 123.45;
    double num3 = 1234567.123;
    double num4 = 10203040506070.8090;

    q.bindValue(0, 2);
    q.bindValue(1, QVariant(num1));
    q.bindValue(2, QVariant(num2));
    q.bindValue(3, QVariant(num3));
    q.bindValue(4, QVariant(num4));
    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, exec(QString("SELECT id, num1, num2, num3, num4 FROM %1").arg(tableName)));

    int id = 0;
    while (q.next()) {
        QCOMPARE(q.value(0).toInt(), ++id);
        QCOMPARE(q.value(1).toString(), QString("%1").arg(num1));
        QCOMPARE(q.value(2).toString(), QString("%1").arg(num2));
        QCOMPARE(QString("%1").arg(q.value(3).toDouble()), QString("%1").arg(num3));
        QCOMPARE(QString("%1").arg(q.value(4).toDouble()), QString("%1").arg(num4));
        QVERIFY(q.value(0).type() == QVariant::Int);
        QVERIFY(q.value(1).type() == QVariant::Double);
        QVERIFY(q.value(2).type() == QVariant::Double);
        QVERIFY(q.value(3).type() == QVariant::Double);
        QVERIFY(q.value(4).type() == QVariant::Double);

        QCOMPARE(q.record().field(1).length(), 2);
        QCOMPARE(q.record().field(1).precision(), 1);
        QCOMPARE(q.record().field(2).length(), 5);
        QCOMPARE(q.record().field(2).precision(), 2);
        QCOMPARE(q.record().field(3).length(), 10);
        QCOMPARE(q.record().field(3).precision(), 3);
        QCOMPARE(q.record().field(4).length(), 18);
        QCOMPARE(q.record().field(4).precision(), 4);
        QVERIFY(q.record().field(0).requiredStatus() == QSqlField::Required);
        QVERIFY(q.record().field(1).requiredStatus() == QSqlField::Optional);
    }

    QSqlRecord r = db.record(tableName);
    QVERIFY(r.field(0).type() == QVariant::Int);
    QVERIFY(r.field(1).type() == QVariant::Double);
    QVERIFY(r.field(2).type() == QVariant::Double);
    QVERIFY(r.field(3).type() == QVariant::Double);
    QVERIFY(r.field(4).type() == QVariant::Double);
    QCOMPARE(r.field(1).length(), 2);
    QCOMPARE(r.field(1).precision(), 1);
    QCOMPARE(r.field(2).length(), 5);
    QCOMPARE(r.field(2).precision(), 2);
    QCOMPARE(r.field(3).length(), 10);
    QCOMPARE(r.field(3).precision(), 3);
    QCOMPARE(r.field(4).length(), 18);
    QCOMPARE(r.field(4).precision(), 4);
    QVERIFY(r.field(0).requiredStatus() == QSqlField::Required);
    QVERIFY(r.field(1).requiredStatus() == QSqlField::Optional);
}

void tst_QSqlDatabase::ibase_fetchBlobs()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString tableName(qTableName("qtest_ibaseblobs", __FILE__));
    QSqlQuery q(db);
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1 (blob1 BLOB segment size 256)").arg(tableName)));

    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?)").arg(tableName)));
    q.bindValue(0, QByteArray().fill('x', 1024));
    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?)").arg(tableName)));
    q.bindValue(0, QByteArray().fill('x', 16383));
    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES (?)").arg(tableName)));
    q.bindValue(0, QByteArray().fill('x', 17408));
    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, exec(QString("SELECT * FROM %1").arg(tableName)));

    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toByteArray().size(), 1024);
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toByteArray().size(), 16383);
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toByteArray().size(), 17408);
}

void tst_QSqlDatabase::ibase_procWithoutReturnValues()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);
    const QString procName(qTableName("qtest_proc1", __FILE__));
    q.exec(QString("drop procedure %1").arg(procName));
    QVERIFY_SQL(q, exec("CREATE PROCEDURE " + procName + " (str VARCHAR(10))\nAS BEGIN\nstr='test';\nEND;"));
    QVERIFY_SQL(q, exec(QString("execute procedure %1('qtest')").arg(procName)));
    q.exec(QString("drop procedure %1").arg(procName));
}

void tst_QSqlDatabase::ibase_procWithReturnValues()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (!db.driverName().startsWith("QIBASE")) {
       QSKIP("InterBase specific test", SkipSingle);
       return;
    }

    const QString procName(qTableName("qtest_proc2", __FILE__));

    QSqlQuery q(db);
    q.exec(QString("drop procedure %1").arg(procName));
    QVERIFY_SQL(q, exec("CREATE PROCEDURE " + procName + " ("
                        "\nABC INTEGER)"
                        "\nRETURNS ("
                        "\nRESULT INTEGER)"
                        "\nAS"
                        "\nbegin"
                        "\nRESULT = 10 * ABC;"
                        "\nsuspend;"
                        "\nend"));

    // Interbase procedures can be executed in two ways: EXECUTE PROCEDURE or SELECT
    QVERIFY_SQL(q, exec(QString("execute procedure %1(123)").arg(procName)));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 1230);
    QVERIFY_SQL(q, exec(QString("select result from %1(456)").arg(procName)));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 4560);
    QVERIFY_SQL(q, prepare(QLatin1String("execute procedure ")+procName+QLatin1String("(?)")));
    q.bindValue(0, 123);
    QVERIFY_SQL(q, exec());
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 1230);
    q.bindValue(0, 456);
    QVERIFY_SQL(q, exec());
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 4560);

    q.exec(QString("drop procedure %1").arg(procName));
}

void tst_QSqlDatabase::formatValueTrimStrings()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);

    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 (id, t_varchar, t_char) values (50, 'Trim Test ', 'Trim Test 2   ')").arg(qTableName("qtest", __FILE__))));
    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 (id, t_varchar, t_char) values (51, 'TrimTest', 'Trim Test 2')").arg(qTableName("qtest", __FILE__))));
    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 (id, t_varchar, t_char) values (52, ' ', '    ')").arg(qTableName("qtest", __FILE__))));

    QVERIFY_SQL(q, exec(QString("SELECT t_varchar, t_char FROM %1 WHERE id >= 50 AND id <= 52 ORDER BY id").arg(qTableName("qtest", __FILE__))));

    QVERIFY_SQL(q, next());

    QCOMPARE(db.driver()->formatValue(q.record().field(0), true), QString("'Trim Test'"));
    QCOMPARE(db.driver()->formatValue(q.record().field(1), true), QString("'Trim Test 2'"));

    QVERIFY_SQL(q, next());
    QCOMPARE(db.driver()->formatValue(q.record().field(0), true), QString("'TrimTest'"));
    QCOMPARE(db.driver()->formatValue(q.record().field(1), true), QString("'Trim Test 2'"));

    QVERIFY_SQL(q, next());
    QCOMPARE(db.driver()->formatValue(q.record().field(0), true), QString("''"));
    QCOMPARE(db.driver()->formatValue(q.record().field(1), true), QString("''"));

}

void tst_QSqlDatabase::odbc_reopenDatabase()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("SELECT * from " + qTableName("qtest", __FILE__)));
    QVERIFY_SQL(q, next());
    db.open();
    QVERIFY_SQL(q, exec("SELECT * from " + qTableName("qtest", __FILE__)));
    QVERIFY_SQL(q, next());
    db.open();
}

void tst_QSqlDatabase::odbc_bindBoolean()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    if (tst_Databases::isMySQL(db)) {
        QSKIP("MySql has inconsistent behaviour of bit field type across versions.", SkipSingle);
        return;
    }

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("CREATE TABLE " + qTableName("qtestBindBool", __FILE__) + "(id int, boolvalue bit)"));

    // Bind and insert
    QVERIFY_SQL(q, prepare("INSERT INTO " + qTableName("qtestBindBool", __FILE__) + " VALUES(?, ?)"));
    q.bindValue(0, 1);
    q.bindValue(1, true);
    QVERIFY_SQL(q, exec());
    q.bindValue(0, 2);
    q.bindValue(1, false);
    QVERIFY_SQL(q, exec());

    // Retrive
    QVERIFY_SQL(q, exec("SELECT id, boolvalue FROM " + qTableName("qtestBindBool", __FILE__) + " ORDER BY id"));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 1);
    QCOMPARE(q.value(1).toBool(), true);
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 2);
    QCOMPARE(q.value(1).toBool(), false);
}

void tst_QSqlDatabase::odbc_testqGetString()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    const QString testqGetString(qTableName("testqGetString", __FILE__));

    QSqlQuery q(db);
    if (tst_Databases::isSqlServer(db))
        QVERIFY_SQL(q, exec("CREATE TABLE " + testqGetString + "(id int, vcvalue varchar(MAX))"));
    else if(tst_Databases::isMSAccess(db))
        QVERIFY_SQL(q, exec("CREATE TABLE " + testqGetString + "(id int, vcvalue memo)"));
    else
        QVERIFY_SQL(q, exec("CREATE TABLE " + testqGetString + "(id int, vcvalue varchar(65538))"));

    QString largeString;
    largeString.fill('A', 65536);

    // Bind and insert
    QVERIFY_SQL(q, prepare("INSERT INTO " + testqGetString + " VALUES(?, ?)"));
    q.bindValue(0, 1);
    q.bindValue(1, largeString);
    QVERIFY_SQL(q, exec());
    q.bindValue(0, 2);
    q.bindValue(1, largeString+QLatin1Char('B'));
    QVERIFY_SQL(q, exec());
    q.bindValue(0, 3);
    q.bindValue(1, largeString+QLatin1Char('B')+QLatin1Char('C'));
    QVERIFY_SQL(q, exec());

    // Retrive
    QVERIFY_SQL(q, exec("SELECT id, vcvalue FROM " + testqGetString + " ORDER BY id"));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 1);
    QCOMPARE(q.value(1).toString().length(), 65536);
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 2);
    QCOMPARE(q.value(1).toString().length(), 65537);
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toInt(), 3);
    QCOMPARE(q.value(1).toString().length(), 65538);
}


void tst_QSqlDatabase::mysql_multiselect()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    const QString qtest(qTableName("qtest", __FILE__));

    QSqlQuery q(db);
    QString version=tst_Databases::getMySqlVersion( db );
    double ver=version.section(QChar::fromLatin1('.'),0,1).toDouble();
    if (ver < 4.1)
        QSKIP("Test requires MySQL >= 4.1", SkipSingle);

    QVERIFY_SQL(q, exec("SELECT * FROM " + qtest + "; SELECT * FROM " + qtest));
    QVERIFY_SQL(q, next());
    QVERIFY_SQL(q, exec("SELECT * FROM " + qtest + "; SELECT * FROM " + qtest));
    QVERIFY_SQL(q, next());
    QVERIFY_SQL(q, exec("SELECT * FROM " + qtest));
}

void tst_QSqlDatabase::ibase_useCustomCharset()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    QString nonlatin1string("��");

    db.close();
    db.setConnectOptions("ISC_DPB_LC_CTYPE=Latin1");
    db.open();

    const QString tableName(qTableName("latin1table", __FILE__));

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1(text VARCHAR(6) CHARACTER SET Latin1)").arg(tableName)));
    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES(?)").arg(tableName)));
    q.addBindValue(nonlatin1string);
    QVERIFY_SQL(q, exec());
    QVERIFY_SQL(q, exec(QString("SELECT text FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());
    QCOMPARE(toHex(q.value(0).toString()), toHex(nonlatin1string));
}

void tst_QSqlDatabase::oci_serverDetach()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    for (int i = 0; i < 2; i++) {
        db.close();
        if (db.open()) {
            QSqlQuery query(db);
            query.exec("SELECT 1 FROM DUAL");
            db.close();
        } else {
            QFAIL(tst_Databases::printError(db.lastError(), db));
        }
    }
    if(!db.open())
        qFatal(tst_Databases::printError(db.lastError(), db));
}

void tst_QSqlDatabase::oci_xmltypeSupport()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString tableName(qTableName("qtest_xmltype", __FILE__));
    QString xml("<?xml version=\"1.0\"?><TABLE_NAME>MY_TABLE</TABLE_NAME>");
    QSqlQuery q(db);

    // Embedding the XML in the statement
    if(!q.exec(QString("CREATE TABLE %1(xmldata xmltype)").arg(tableName)))
        QSKIP("This test requries xml type support", SkipSingle);
    QVERIFY_SQL(q, exec(QString("INSERT INTO %1 values('%2')").arg(tableName).arg(xml)));
    QVERIFY_SQL(q, exec(QString("SELECT a.xmldata.getStringVal() FROM %1 a").arg(tableName)));
    QVERIFY_SQL(q, last());
    QCOMPARE(q.value(0).toString(), xml);

    // Binding the XML with a prepared statement
    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 values(?)").arg(tableName)));
    q.addBindValue(xml);
    QVERIFY_SQL(q, exec());
    QVERIFY_SQL(q, exec(QString("SELECT a.xmldata.getStringVal() FROM %1 a").arg(tableName)));
    QVERIFY_SQL(q, last());
    QCOMPARE(q.value(0).toString(), xml);
}


void tst_QSqlDatabase::oci_fieldLength()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString tableName(qTableName("qtest", __FILE__));
    QSqlQuery q(db);

    QVERIFY_SQL(q, exec(QString("SELECT t_varchar, t_char FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.record().field(0).length(), 40);
    QCOMPARE(q.record().field(1).length(), 40);
}

void tst_QSqlDatabase::oci_synonymstest()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlQuery q(db);
    const QString creator(qTableName("CREATOR", __FILE__)), appuser(qTableName("APPUSER", __FILE__)), table1(qTableName("TABLE1", __FILE__));
//     QVERIFY_SQL(q, exec("drop public synonym "+table1));
    QVERIFY_SQL(q, exec(QString("create user %1 identified by %2 default tablespace users temporary tablespace temp").arg(creator).arg(creator)));
    QVERIFY_SQL(q, exec(QString("grant CONNECT to %1").arg(creator)));
    QVERIFY_SQL(q, exec(QString("grant RESOURCE to %1").arg(creator)));
    QSqlDatabase db2=db.cloneDatabase(db, QLatin1String("oci_synonymstest"));
    db2.close();
    QVERIFY_SQL(db2, open(creator,creator));
    QSqlQuery q2(db2);
    QVERIFY_SQL(q2, exec(QString("create table %1(id int primary key)").arg(table1)));
    QVERIFY_SQL(q, exec(QString("create user %1 identified by %2 default tablespace users temporary tablespace temp").arg(appuser).arg(appuser)));
    QVERIFY_SQL(q, exec(QString("grant CREATE ANY SYNONYM to %1").arg(appuser)));
    QVERIFY_SQL(q, exec(QString("grant CONNECT to %1").arg(appuser)));
    QVERIFY_SQL(q2, exec(QString("grant select, insert, update, delete on %1 to %2").arg(table1).arg(appuser)));
    QSqlDatabase db3=db.cloneDatabase(db, QLatin1String("oci_synonymstest2"));
    db3.close();
    QVERIFY_SQL(db3, open(appuser,appuser));
    QSqlQuery q3(db3);
    QVERIFY_SQL(q3, exec("create synonym "+appuser+'.'+qTableName("synonyms", __FILE__)+" for "+creator+'.'+table1));
    QVERIFY_SQL(db3, tables().filter(qTableName("synonyms", __FILE__), Qt::CaseInsensitive).count() >= 1);
}


// This test isn't really necessary as SQL_GUID / uniqueidentifier is
// already tested in recordSQLServer().
void tst_QSqlDatabase::odbc_uniqueidentifier()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    if (!tst_Databases::isSqlServer(db)) {
        QSKIP("SQL Server (ODBC) specific test", SkipSingle);
        return;
    }

    const QString tableName(qTableName("qtest_sqlguid", __FILE__));
    QString guid = QString("AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE");
    QString invalidGuid = QString("GAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE");

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1(id uniqueidentifier)").arg(tableName)));

    q.prepare(QString("INSERT INTO %1 VALUES(?)").arg(tableName));;
    q.addBindValue(guid);
    QVERIFY_SQL(q, exec());

    q.addBindValue(invalidGuid);
    QEXPECT_FAIL("", "The GUID string is required to be correctly formated!",
        Continue);
    QVERIFY_SQL(q, exec());

    QVERIFY_SQL(q, exec(QString("SELECT id FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());
    QCOMPARE(q.value(0).toString(), guid);
}

void tst_QSqlDatabase::getConnectionName()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QCOMPARE(db.connectionName(), dbName);
    QSqlDatabase clone = QSqlDatabase::cloneDatabase(db, "clonedDatabase");
    QCOMPARE(clone.connectionName(), QString("clonedDatabase"));
    QTest::ignoreMessage(QtWarningMsg, "QSqlDatabasePrivate::removeDatabase: "
        "connection 'clonedDatabase' is still in use, all queries will cease to work.");
    QSqlDatabase::removeDatabase("clonedDatabase");
    QCOMPARE(clone.connectionName(), QString());
    QCOMPARE(db.connectionName(), dbName);
}

void tst_QSqlDatabase::odbc_uintfield()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString tableName(qTableName("uint_table", __FILE__));
    unsigned int val = 4294967295U;

    QSqlQuery q(db);
    if ( tst_Databases::isMSAccess( db ) )
        QVERIFY_SQL(q, exec(QString("CREATE TABLE %1(num number)").arg(tableName)));
    else
        QVERIFY_SQL(q, exec(QString("CREATE TABLE %1(num numeric(10))").arg(tableName)));
    q.prepare(QString("INSERT INTO %1 VALUES(?)").arg(tableName));
    q.addBindValue(val);
    QVERIFY_SQL(q, exec());

    q.exec(QString("SELECT num FROM %1").arg(tableName));
    if (q.next())
        QCOMPARE(q.value(0).toUInt(), val);
}

void tst_QSqlDatabase::eventNotification()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    QSqlDriver *driver = db.driver();
    if (!driver->hasFeature(QSqlDriver::EventNotifications))
        QSKIP("DBMS doesn't support event notifications", SkipSingle);

    // Not subscribed to any events yet
    QCOMPARE(driver->subscribedToNotifications().size(), 0);

    // Subscribe to "event_foo"
    QVERIFY_SQL(*driver, subscribeToNotification(QLatin1String("event_foo")));
    QCOMPARE(driver->subscribedToNotifications().size(), 1);
    QVERIFY(driver->subscribedToNotifications().contains("event_foo"));

    // Can't subscribe to the same event multiple times
    QVERIFY2(!driver->subscribeToNotification(QLatin1String("event_foo")), "Shouldn't be able to subscribe to event_foo twice");
    QCOMPARE(driver->subscribedToNotifications().size(), 1);

    // Unsubscribe from "event_foo"
    QVERIFY_SQL(*driver, unsubscribeFromNotification(QLatin1String("event_foo")));
    QCOMPARE(driver->subscribedToNotifications().size(), 0);

    // Re-subscribing to "event_foo" now is allowed
    QVERIFY_SQL(*driver, subscribeToNotification(QLatin1String("event_foo")));
    QCOMPARE(driver->subscribedToNotifications().size(), 1);

    // closing the connection causes automatically unsubscription from all events
    db.close();
    QCOMPARE(driver->subscribedToNotifications().size(), 0);

    // Can't subscribe to anything while database is closed
    QVERIFY2(!driver->subscribeToNotification(QLatin1String("event_foo")), "Shouldn't be able to subscribe to event_foo");
    QCOMPARE(driver->subscribedToNotifications().size(), 0);

    db.open();
}

void tst_QSqlDatabase::eventNotificationIBase()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString procedureName(qTableName("posteventProc", __FILE__));
    QSqlDriver *driver=db.driver();
    QVERIFY_SQL(*driver, subscribeToNotification(procedureName));
    QTest::qWait(300);  // Interbase needs some time to call the driver callback.

    db.transaction();   // InterBase events are posted from within transactions.
    QSqlQuery q(db);
    q.exec(QString("DROP PROCEDURE %1").arg(procedureName));
    q.exec(QString("CREATE PROCEDURE %1\nAS BEGIN\nPOST_EVENT '%1';\nEND;").arg(procedureName));
    q.exec(QString("EXECUTE PROCEDURE %1").arg(procedureName));
    QSignalSpy spy(driver, SIGNAL(notification(const QString&)));
    db.commit();        // No notifications are posted until the transaction is committed.
    QTest::qWait(300);  // Interbase needs some time to post the notification and call the driver callback.
                        // This happends from another thread, and we have to process events in order for the
                        // event handler in the driver to be executed and emit the notification signal.

    QCOMPARE(spy.count(), 1);
    QList<QVariant> arguments = spy.takeFirst();
    QVERIFY(arguments.at(0).toString() == procedureName);
    QVERIFY_SQL(*driver, unsubscribeFromNotification(procedureName));
    q.exec(QString("DROP PROCEDURE %1").arg(procedureName));
}

void tst_QSqlDatabase::eventNotificationPSQL()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

#if defined(Q_OS_LINUX)
    QSKIP( "Event support doesn't work on linux", SkipAll );
#endif

    QSqlQuery query(db);
    QString procedureName = qTableName("posteventProc", __FILE__);

    QSqlDriver &driver=*(db.driver());
    QVERIFY_SQL(driver, subscribeToNotification(procedureName));
    QSignalSpy spy(db.driver(), SIGNAL(notification(const QString&)));
    query.exec(QString("NOTIFY \"%1\"").arg(procedureName));
    QCoreApplication::processEvents();
    QCOMPARE(spy.count(), 1);
    QList<QVariant> arguments = spy.takeFirst();
    QVERIFY(arguments.at(0).toString() == procedureName);
    QVERIFY_SQL(driver, unsubscribeFromNotification(procedureName));
}

void tst_QSqlDatabase::sqlite_bindAndFetchUInt()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    if (db.driverName().startsWith("QSQLITE2")) { 
        QSKIP("SQLite3 specific test", SkipSingle); 
        return; 
    }

    QSqlQuery q(db);
    const QString tableName(qTableName("uint_test", __FILE__));
    QVERIFY_SQL(q, exec(QString("CREATE TABLE %1(uint_field UNSIGNED INTEGER)").arg(tableName)));
    QVERIFY_SQL(q, prepare(QString("INSERT INTO %1 VALUES(?)").arg(tableName)));
    q.addBindValue(4000000000U);
    QVERIFY_SQL(q, exec());
    QVERIFY_SQL(q, exec(QString("SELECT uint_field FROM %1").arg(tableName)));
    QVERIFY_SQL(q, next());

    // All integers in SQLite are signed, so even though we bound the value
    // as an UInt it will come back as a LongLong
    QCOMPARE(q.value(0).type(), QVariant::LongLong);
    QCOMPARE(q.value(0).toUInt(), 4000000000U);
}

void tst_QSqlDatabase::db2_valueCacheUpdate()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    const QString tableName(qTableName("qtest", __FILE__));
    QSqlQuery q(db);
    q.exec(QString("SELECT id, t_varchar, t_char, t_numeric FROM %1").arg(tableName));
    q.next();
    QVariant c4 = q.value(3);
    QVariant c3 = q.value(2);
    QVariant c2 = q.value(1);
    QVariant c1 = q.value(0);
    QCOMPARE(c4.toString(), q.value(3).toString());
    QCOMPARE(c3.toString(), q.value(2).toString());
    QCOMPARE(c2.toString(), q.value(1).toString());
    QCOMPARE(c1.toString(), q.value(0).toString());
}

void tst_QSqlDatabase::sqlStatementUseIsNull_189093()
{
    // NULL = NULL is unknown, the sqlStatment must use IS NULL
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);

    // select a record with NULL value
    QSqlQuery q(QString::null, db);
    QVERIFY_SQL(q, exec("select * from " + qTableName("qtest", __FILE__) + " where id = 4"));
    QVERIFY_SQL(q, next());

    QSqlDriver *driver = db.driver();
    QVERIFY(driver);

    QString preparedStatment = driver->sqlStatement(QSqlDriver::WhereStatement, QString("qtest"), q.record(), true);
    QCOMPARE(preparedStatment.count("IS NULL", Qt::CaseInsensitive), 2);

    QString statment = driver->sqlStatement(QSqlDriver::WhereStatement, QString("qtest"), q.record(), false);
    QCOMPARE(statment.count("IS NULL", Qt::CaseInsensitive), 2);
}

void tst_QSqlDatabase::mysql_savepointtest()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    if ( db.driverName().startsWith( "QMYSQL" ) && tst_Databases::getMySqlVersion( db ).section( QChar('.'), 0, 1 ).toDouble()<4.1 )
        QSKIP( "Test requires MySQL >= 4.1", SkipSingle );

    QSqlQuery q(db);
    QVERIFY_SQL(q, exec("begin"));
    QVERIFY_SQL(q, exec("insert into "+qTableName("qtest", __FILE__)+" VALUES (54, 'foo', 'foo', 54.54)"));
    QVERIFY_SQL(q, exec("savepoint foo"));
}

void tst_QSqlDatabase::oci_tables()
{
    QFETCH(QString, dbName);
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    QSqlQuery q(db);
    const QString systemTableName("system."+qTableName("mypassword", __FILE__));
    QVERIFY_SQL(q, exec("CREATE TABLE "+systemTableName+"(name VARCHAR(20))"));
    QVERIFY(!db.tables().contains(systemTableName.toUpper()));
    QVERIFY(db.tables(QSql::SystemTables).contains(systemTableName.toUpper()));
}

void tst_QSqlDatabase::sqlite_enable_cache_mode()
{
    QFETCH(QString, dbName);
    if(dbName.endsWith(":memory:"))
        QSKIP( "cache mode is meaningless for :memory: databases", SkipSingle );
    QSqlDatabase db = QSqlDatabase::database(dbName);
    CHECK_DATABASE(db);
    db.close();
    db.setConnectOptions("QSQLITE_ENABLE_SHARED_CACHE");
    QVERIFY_SQL(db, open());
    QSqlDatabase db2 = QSqlDatabase::cloneDatabase(db, dbName+":cachemodeconn2");
    db2.setConnectOptions("QSQLITE_ENABLE_SHARED_CACHE");
    QVERIFY_SQL(db2, open());
    QSqlQuery q(db), q2(db2);
    QVERIFY_SQL(q, exec("select * from "+qTableName("qtest", __FILE__)));
    QVERIFY_SQL(q2, exec("select * from "+qTableName("qtest", __FILE__)));
}

QTEST_MAIN(tst_QSqlDatabase)
#include "tst_qsqldatabase.moc"
(false); QVERIFY(!testWidget->acceptDrops()); QVERIFY(!childWidget->acceptDrops()); QVERIFY(grandChildWidget->acceptDrops()); QVERIFY(grandChildWidget->testAttribute(Qt::WA_DropSiteRegistered)); grandChildWidget->setAcceptDrops(false); QVERIFY(!grandChildWidget->testAttribute(Qt::WA_DropSiteRegistered)); testWidget->setAcceptDrops(true); childWidget->setAcceptDrops(true); testWidget->setAcceptDrops(false); QVERIFY(!testWidget->acceptDrops()); QVERIFY(childWidget->acceptDrops()); QVERIFY(!grandChildWidget->acceptDrops()); QVERIFY(grandChildWidget->testAttribute(Qt::WA_DropSiteRegistered)); #endif } void tst_QWidget::isEnabledTo() { QWidget* childWidget = new QWidget( testWidget ); QWidget* grandChildWidget = new QWidget( childWidget ); QVERIFY( childWidget->isEnabledTo( testWidget ) ); QVERIFY( grandChildWidget->isEnabledTo( testWidget ) ); childWidget->setEnabled( FALSE ); QVERIFY( !childWidget->isEnabledTo( testWidget ) ); QVERIFY( grandChildWidget->isEnabledTo( childWidget ) ); QVERIFY( !grandChildWidget->isEnabledTo( testWidget ) ); } void tst_QWidget::visible() { // Ensure that the testWidget is hidden for this test at the // start testWidget->hide(); QVERIFY( !testWidget->isVisible() ); QWidget* childWidget = new QWidget( testWidget ); QVERIFY( !childWidget->isVisible() ); testWidget->show(); QVERIFY( testWidget->isVisible() ); QVERIFY( childWidget->isVisible() ); QWidget* grandChildWidget = new QWidget( childWidget ); QVERIFY( !grandChildWidget->isVisible() ); grandChildWidget->show(); QVERIFY( grandChildWidget->isVisible() ); grandChildWidget->hide(); testWidget->hide(); testWidget->show(); QVERIFY( !grandChildWidget->isVisible() ); QVERIFY( testWidget->isVisible() ); QVERIFY( childWidget->isVisible() ); grandChildWidget->show(); childWidget->hide(); testWidget->hide(); testWidget->show(); QVERIFY( testWidget->isVisible() ); QVERIFY( !childWidget->isVisible() ); QVERIFY( !grandChildWidget->isVisible() ); grandChildWidget->show(); QVERIFY( !grandChildWidget->isVisible() ); } void tst_QWidget::setLocale() { QWidget w; QCOMPARE(w.locale(), QLocale()); w.setLocale(QLocale::Italian); QCOMPARE(w.locale(), QLocale(QLocale::Italian)); QWidget child1(&w); QCOMPARE(child1.locale(), QLocale(QLocale::Italian)); w.unsetLocale(); QCOMPARE(w.locale(), QLocale()); QCOMPARE(child1.locale(), QLocale()); w.setLocale(QLocale::French); QCOMPARE(w.locale(), QLocale(QLocale::French)); QCOMPARE(child1.locale(), QLocale(QLocale::French)); child1.setLocale(QLocale::Italian); QCOMPARE(w.locale(), QLocale(QLocale::French)); QCOMPARE(child1.locale(), QLocale(QLocale::Italian)); child1.unsetLocale(); QCOMPARE(w.locale(), QLocale(QLocale::French)); QCOMPARE(child1.locale(), QLocale(QLocale::French)); QWidget child2; QCOMPARE(child2.locale(), QLocale()); child2.setParent(&w); QCOMPARE(child2.locale(), QLocale(QLocale::French)); } void tst_QWidget::visible_setWindowOpacity() { testWidget->hide(); QVERIFY( !testWidget->isVisible() ); testWidget->setWindowOpacity(0.5); #ifdef Q_OS_WIN QVERIFY(::IsWindowVisible(testWidget->winId()) == FALSE); #endif testWidget->setWindowOpacity(1.0); } void tst_QWidget::isVisibleTo() { // Ensure that the testWidget is hidden for this test at the // start testWidget->hide(); QWidget* childWidget = new QWidget( testWidget ); QVERIFY( childWidget->isVisibleTo( testWidget ) ); childWidget->hide(); QVERIFY( !childWidget->isVisibleTo( testWidget ) ); QWidget* grandChildWidget = new QWidget( childWidget ); QVERIFY( !grandChildWidget->isVisibleTo( testWidget ) ); QVERIFY( grandChildWidget->isVisibleTo( childWidget ) ); testWidget->show(); childWidget->show(); QVERIFY( childWidget->isVisibleTo( testWidget ) ); grandChildWidget->hide(); QVERIFY( !grandChildWidget->isVisibleTo( childWidget ) ); QVERIFY( !grandChildWidget->isVisibleTo( testWidget ) ); } void tst_QWidget::isHidden() { // Ensure that the testWidget is hidden for this test at the // start testWidget->hide(); QVERIFY( testWidget->isHidden() ); QWidget* childWidget = new QWidget( testWidget ); QVERIFY( !childWidget->isHidden() ); testWidget->show(); QVERIFY( !testWidget->isHidden() ); QVERIFY( !childWidget->isHidden() ); QWidget* grandChildWidget = new QWidget( childWidget ); QVERIFY( grandChildWidget->isHidden() ); grandChildWidget->show(); QVERIFY( !grandChildWidget->isHidden() ); grandChildWidget->hide(); testWidget->hide(); testWidget->show(); QVERIFY( grandChildWidget->isHidden() ); QVERIFY( !testWidget->isHidden() ); QVERIFY( !childWidget->isHidden() ); grandChildWidget->show(); childWidget->hide(); testWidget->hide(); testWidget->show(); QVERIFY( !testWidget->isHidden() ); QVERIFY( childWidget->isHidden() ); QVERIFY( !grandChildWidget->isHidden() ); grandChildWidget->show(); QVERIFY( !grandChildWidget->isHidden() ); } void tst_QWidget::fonts() { // Tests setFont(), ownFont() and unsetFont() QWidget* cleanTestWidget = new QWidget( testWidget ); QFont originalFont = cleanTestWidget->font(); QVERIFY( !cleanTestWidget->testAttribute(Qt::WA_SetFont) ); cleanTestWidget->setFont(QFont()); QVERIFY( !cleanTestWidget->testAttribute(Qt::WA_SetFont) ); QFont newFont( "times", 18 ); cleanTestWidget->setFont( newFont ); newFont = newFont.resolve( testWidget->font() ); QVERIFY( cleanTestWidget->testAttribute(Qt::WA_SetFont) ); QVERIFY( cleanTestWidget->font() == newFont ); cleanTestWidget->setFont(QFont()); QVERIFY( !cleanTestWidget->testAttribute(Qt::WA_SetFont) ); QVERIFY( cleanTestWidget->font() == originalFont ); } void tst_QWidget::mapToGlobal() { #if !defined(QT3_SUPPORT) QSKIP("No Qt3 Support", SkipAll); #else QPoint vis = testWidget->mapToGlobal(QPoint(0,0)); testWidget->hide(); QCOMPARE(testWidget->mapToGlobal(QPoint(0,0)), vis); testWidget->show(); // test in a layout and witha move Q3HBox * qhb = new Q3HBox(testWidget); QWidget * qw = new QWidget(qhb); qw->move(6,12); QPoint wVis = qw->mapToGlobal(QPoint(0,0)); qw->hide(); QCOMPARE(qw->mapToGlobal(QPoint(0,0)), wVis); delete qhb; #endif // QT3_SUPPORT } void tst_QWidget::mapFromAndTo_data() { QTest::addColumn<bool>("windowHidden"); QTest::addColumn<bool>("subWindow1Hidden"); QTest::addColumn<bool>("subWindow2Hidden"); QTest::addColumn<bool>("subSubWindowHidden"); QTest::addColumn<bool>("windowMinimized"); QTest::addColumn<bool>("subWindow1Minimized"); QTest::newRow("window 1 sub1 1 sub2 1 subsub 1") << false << false << false << false << false << false; QTest::newRow("window 0 sub1 1 sub2 1 subsub 1") << true << false << false << false << false << false; QTest::newRow("window 1 sub1 0 sub2 1 subsub 1") << false << true << false << false << false << false; QTest::newRow("window 0 sub1 0 sub2 1 subsub 1") << true << true << false << false << false << false; QTest::newRow("window 1 sub1 1 sub2 0 subsub 1") << false << false << true << false << false << false; QTest::newRow("window 0 sub1 1 sub2 0 subsub 1") << true << false << true << false << false << false; QTest::newRow("window 1 sub1 0 sub2 0 subsub 1") << false << true << true << false << false << false; QTest::newRow("window 0 sub1 0 sub2 0 subsub 1") << true << true << true << false << false << false; QTest::newRow("window 1 sub1 1 sub2 1 subsub 0") << false << false << false << true << false << false; QTest::newRow("window 0 sub1 1 sub2 1 subsub 0") << true << false << false << true << false << false; QTest::newRow("window 1 sub1 0 sub2 1 subsub 0") << false << true << false << true << false << false; QTest::newRow("window 0 sub1 0 sub2 1 subsub 0") << true << true << false << true << false << false; QTest::newRow("window 1 sub1 1 sub2 0 subsub 0") << false << false << true << true << false << false; QTest::newRow("window 0 sub1 1 sub2 0 subsub 0") << true << false << true << true << false << false; QTest::newRow("window 1 sub1 0 sub2 0 subsub 0") << false << true << true << true << false << false; QTest::newRow("window 0 sub1 0 sub2 0 subsub 0") << true << true << true << true << false << false; QTest::newRow("window 1 sub1 1 sub2 1 subsub 1 windowMinimized") << false << false << false << false << true << false; QTest::newRow("window 0 sub1 1 sub2 1 subsub 1 windowMinimized") << true << false << false << false << true << false; QTest::newRow("window 1 sub1 0 sub2 1 subsub 1 windowMinimized") << false << true << false << false << true << false; QTest::newRow("window 0 sub1 0 sub2 1 subsub 1 windowMinimized") << true << true << false << false << true << false; QTest::newRow("window 1 sub1 1 sub2 0 subsub 1 windowMinimized") << false << false << true << false << true << false; QTest::newRow("window 0 sub1 1 sub2 0 subsub 1 windowMinimized") << true << false << true << false << true << false; QTest::newRow("window 1 sub1 0 sub2 0 subsub 1 windowMinimized") << false << true << true << false << true << false; QTest::newRow("window 0 sub1 0 sub2 0 subsub 1 windowMinimized") << true << true << true << false << true << false; QTest::newRow("window 1 sub1 1 sub2 1 subsub 0 windowMinimized") << false << false << false << true << true << false; QTest::newRow("window 0 sub1 1 sub2 1 subsub 0 windowMinimized") << true << false << false << true << true << false; QTest::newRow("window 1 sub1 0 sub2 1 subsub 0 windowMinimized") << false << true << false << true << true << false; QTest::newRow("window 0 sub1 0 sub2 1 subsub 0 windowMinimized") << true << true << false << true << true << false; QTest::newRow("window 1 sub1 1 sub2 0 subsub 0 windowMinimized") << false << false << true << true << true << false; QTest::newRow("window 0 sub1 1 sub2 0 subsub 0 windowMinimized") << true << false << true << true << true << false; QTest::newRow("window 1 sub1 0 sub2 0 subsub 0 windowMinimized") << false << true << true << true << true << false; QTest::newRow("window 0 sub1 0 sub2 0 subsub 0 windowMinimized") << true << true << true << true << true << false; QTest::newRow("window 1 sub1 1 sub2 1 subsub 1 subWindow1Minimized") << false << false << false << false << false << true; QTest::newRow("window 0 sub1 1 sub2 1 subsub 1 subWindow1Minimized") << true << false << false << false << false << true; QTest::newRow("window 1 sub1 0 sub2 1 subsub 1 subWindow1Minimized") << false << true << false << false << false << true; QTest::newRow("window 0 sub1 0 sub2 1 subsub 1 subWindow1Minimized") << true << true << false << false << false << true; QTest::newRow("window 1 sub1 1 sub2 0 subsub 1 subWindow1Minimized") << false << false << true << false << false << true; QTest::newRow("window 0 sub1 1 sub2 0 subsub 1 subWindow1Minimized") << true << false << true << false << false << true; QTest::newRow("window 1 sub1 0 sub2 0 subsub 1 subWindow1Minimized") << false << true << true << false << false << true; QTest::newRow("window 0 sub1 0 sub2 0 subsub 1 subWindow1Minimized") << true << true << true << false << false << true; QTest::newRow("window 1 sub1 1 sub2 1 subsub 0 subWindow1Minimized") << false << false << false << true << false << true; QTest::newRow("window 0 sub1 1 sub2 1 subsub 0 subWindow1Minimized") << true << false << false << true << false << true; QTest::newRow("window 1 sub1 0 sub2 1 subsub 0 subWindow1Minimized") << false << true << false << true << false << true; QTest::newRow("window 0 sub1 0 sub2 1 subsub 0 subWindow1Minimized") << true << true << false << true << false << true; QTest::newRow("window 1 sub1 1 sub2 0 subsub 0 subWindow1Minimized") << false << false << true << true << false << true; QTest::newRow("window 0 sub1 1 sub2 0 subsub 0 subWindow1Minimized") << true << false << true << true << false << true; QTest::newRow("window 1 sub1 0 sub2 0 subsub 0 subWindow1Minimized") << false << true << true << true << false << true; QTest::newRow("window 0 sub1 0 sub2 0 subsub 0 subWindow1Minimized") << true << true << true << true << false << true; } void tst_QWidget::mapFromAndTo() { QFETCH(bool, windowHidden); QFETCH(bool, subWindow1Hidden); QFETCH(bool, subWindow2Hidden); QFETCH(bool, subSubWindowHidden); QFETCH(bool, windowMinimized); QFETCH(bool, subWindow1Minimized); // create a toplevel and two overlapping siblings QWidget window; window.setWindowFlags(window.windowFlags() | Qt::X11BypassWindowManagerHint); QWidget *subWindow1 = new QWidget(&window); QWidget *subWindow2 = new QWidget(&window); QWidget *subSubWindow = new QWidget(subWindow1); // set their geometries window.setGeometry(100, 100, 100, 100); subWindow1->setGeometry(50, 50, 100, 100); subWindow2->setGeometry(75, 75, 100, 100); subSubWindow->setGeometry(10, 10, 10, 10); #if !defined (Q_OS_WINCE) && !defined(Q_OS_SYMBIAN) //still no proper minimizing //update visibility if (windowMinimized) { if (!windowHidden) { window.showMinimized(); QVERIFY(window.isMinimized()); } } else { window.setVisible(!windowHidden); } if (subWindow1Minimized) { subWindow1->hide(); subWindow1->showMinimized(); QVERIFY(subWindow1->isMinimized()); } else { subWindow1->setVisible(!subWindow1Hidden); } #else Q_UNUSED(windowHidden); Q_UNUSED(subWindow1Hidden); Q_UNUSED(windowMinimized); Q_UNUSED(subWindow1Minimized); #endif subWindow2->setVisible(!subWindow2Hidden); subSubWindow->setVisible(!subSubWindowHidden); // window QCOMPARE(window.mapToGlobal(QPoint(0, 0)), QPoint(100, 100)); QCOMPARE(window.mapToGlobal(QPoint(10, 0)), QPoint(110, 100)); QCOMPARE(window.mapToGlobal(QPoint(0, 10)), QPoint(100, 110)); QCOMPARE(window.mapToGlobal(QPoint(-10, 0)), QPoint(90, 100)); QCOMPARE(window.mapToGlobal(QPoint(0, -10)), QPoint(100, 90)); QCOMPARE(window.mapToGlobal(QPoint(100, 100)), QPoint(200, 200)); QCOMPARE(window.mapToGlobal(QPoint(110, 100)), QPoint(210, 200)); QCOMPARE(window.mapToGlobal(QPoint(100, 110)), QPoint(200, 210)); QCOMPARE(window.mapFromGlobal(QPoint(100, 100)), QPoint(0, 0)); QCOMPARE(window.mapFromGlobal(QPoint(110, 100)), QPoint(10, 0)); QCOMPARE(window.mapFromGlobal(QPoint(100, 110)), QPoint(0, 10)); QCOMPARE(window.mapFromGlobal(QPoint(90, 100)), QPoint(-10, 0)); QCOMPARE(window.mapFromGlobal(QPoint(100, 90)), QPoint(0, -10)); QCOMPARE(window.mapFromGlobal(QPoint(200, 200)), QPoint(100, 100)); QCOMPARE(window.mapFromGlobal(QPoint(210, 200)), QPoint(110, 100)); QCOMPARE(window.mapFromGlobal(QPoint(200, 210)), QPoint(100, 110)); QCOMPARE(window.mapToParent(QPoint(0, 0)), QPoint(100, 100)); QCOMPARE(window.mapToParent(QPoint(10, 0)), QPoint(110, 100)); QCOMPARE(window.mapToParent(QPoint(0, 10)), QPoint(100, 110)); QCOMPARE(window.mapToParent(QPoint(-10, 0)), QPoint(90, 100)); QCOMPARE(window.mapToParent(QPoint(0, -10)), QPoint(100, 90)); QCOMPARE(window.mapToParent(QPoint(100, 100)), QPoint(200, 200)); QCOMPARE(window.mapToParent(QPoint(110, 100)), QPoint(210, 200)); QCOMPARE(window.mapToParent(QPoint(100, 110)), QPoint(200, 210)); QCOMPARE(window.mapFromParent(QPoint(100, 100)), QPoint(0, 0)); QCOMPARE(window.mapFromParent(QPoint(110, 100)), QPoint(10, 0)); QCOMPARE(window.mapFromParent(QPoint(100, 110)), QPoint(0, 10)); QCOMPARE(window.mapFromParent(QPoint(90, 100)), QPoint(-10, 0)); QCOMPARE(window.mapFromParent(QPoint(100, 90)), QPoint(0, -10)); QCOMPARE(window.mapFromParent(QPoint(200, 200)), QPoint(100, 100)); QCOMPARE(window.mapFromParent(QPoint(210, 200)), QPoint(110, 100)); QCOMPARE(window.mapFromParent(QPoint(200, 210)), QPoint(100, 110)); // first subwindow QCOMPARE(subWindow1->mapToGlobal(QPoint(0, 0)), QPoint(150, 150)); QCOMPARE(subWindow1->mapToGlobal(QPoint(10, 0)), QPoint(160, 150)); QCOMPARE(subWindow1->mapToGlobal(QPoint(0, 10)), QPoint(150, 160)); QCOMPARE(subWindow1->mapToGlobal(QPoint(-10, 0)), QPoint(140, 150)); QCOMPARE(subWindow1->mapToGlobal(QPoint(0, -10)), QPoint(150, 140)); QCOMPARE(subWindow1->mapToGlobal(QPoint(100, 100)), QPoint(250, 250)); QCOMPARE(subWindow1->mapToGlobal(QPoint(110, 100)), QPoint(260, 250)); QCOMPARE(subWindow1->mapToGlobal(QPoint(100, 110)), QPoint(250, 260)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(150, 150)), QPoint(0, 0)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(160, 150)), QPoint(10, 0)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(150, 160)), QPoint(0, 10)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(140, 150)), QPoint(-10, 0)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(150, 140)), QPoint(0, -10)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(250, 250)), QPoint(100, 100)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(260, 250)), QPoint(110, 100)); QCOMPARE(subWindow1->mapFromGlobal(QPoint(250, 260)), QPoint(100, 110)); QCOMPARE(subWindow1->mapToParent(QPoint(0, 0)), QPoint(50, 50)); QCOMPARE(subWindow1->mapToParent(QPoint(10, 0)), QPoint(60, 50)); QCOMPARE(subWindow1->mapToParent(QPoint(0, 10)), QPoint(50, 60)); QCOMPARE(subWindow1->mapToParent(QPoint(-10, 0)), QPoint(40, 50)); QCOMPARE(subWindow1->mapToParent(QPoint(0, -10)), QPoint(50, 40)); QCOMPARE(subWindow1->mapToParent(QPoint(100, 100)), QPoint(150, 150)); QCOMPARE(subWindow1->mapToParent(QPoint(110, 100)), QPoint(160, 150)); QCOMPARE(subWindow1->mapToParent(QPoint(100, 110)), QPoint(150, 160)); QCOMPARE(subWindow1->mapFromParent(QPoint(50, 50)), QPoint(0, 0)); QCOMPARE(subWindow1->mapFromParent(QPoint(60, 50)), QPoint(10, 0)); QCOMPARE(subWindow1->mapFromParent(QPoint(50, 60)), QPoint(0, 10)); QCOMPARE(subWindow1->mapFromParent(QPoint(40, 50)), QPoint(-10, 0)); QCOMPARE(subWindow1->mapFromParent(QPoint(50, 40)), QPoint(0, -10)); QCOMPARE(subWindow1->mapFromParent(QPoint(150, 150)), QPoint(100, 100)); QCOMPARE(subWindow1->mapFromParent(QPoint(160, 150)), QPoint(110, 100)); QCOMPARE(subWindow1->mapFromParent(QPoint(150, 160)), QPoint(100, 110)); // subsubwindow QCOMPARE(subSubWindow->mapToGlobal(QPoint(0, 0)), QPoint(160, 160)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(10, 0)), QPoint(170, 160)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(0, 10)), QPoint(160, 170)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(-10, 0)), QPoint(150, 160)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(0, -10)), QPoint(160, 150)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(100, 100)), QPoint(260, 260)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(110, 100)), QPoint(270, 260)); QCOMPARE(subSubWindow->mapToGlobal(QPoint(100, 110)), QPoint(260, 270)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(160, 160)), QPoint(0, 0)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(170, 160)), QPoint(10, 0)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(160, 170)), QPoint(0, 10)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(150, 160)), QPoint(-10, 0)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(160, 150)), QPoint(0, -10)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(260, 260)), QPoint(100, 100)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(270, 260)), QPoint(110, 100)); QCOMPARE(subSubWindow->mapFromGlobal(QPoint(260, 270)), QPoint(100, 110)); QCOMPARE(subSubWindow->mapToParent(QPoint(0, 0)), QPoint(10, 10)); QCOMPARE(subSubWindow->mapToParent(QPoint(10, 0)), QPoint(20, 10)); QCOMPARE(subSubWindow->mapToParent(QPoint(0, 10)), QPoint(10, 20)); QCOMPARE(subSubWindow->mapToParent(QPoint(-10, 0)), QPoint(0, 10)); QCOMPARE(subSubWindow->mapToParent(QPoint(0, -10)), QPoint(10, 0)); QCOMPARE(subSubWindow->mapToParent(QPoint(100, 100)), QPoint(110, 110)); QCOMPARE(subSubWindow->mapToParent(QPoint(110, 100)), QPoint(120, 110)); QCOMPARE(subSubWindow->mapToParent(QPoint(100, 110)), QPoint(110, 120)); QCOMPARE(subSubWindow->mapFromParent(QPoint(10, 10)), QPoint(0, 0)); QCOMPARE(subSubWindow->mapFromParent(QPoint(20, 10)), QPoint(10, 0)); QCOMPARE(subSubWindow->mapFromParent(QPoint(10, 20)), QPoint(0, 10)); QCOMPARE(subSubWindow->mapFromParent(QPoint(0, 10)), QPoint(-10, 0)); QCOMPARE(subSubWindow->mapFromParent(QPoint(10, 0)), QPoint(0, -10)); QCOMPARE(subSubWindow->mapFromParent(QPoint(110, 110)), QPoint(100, 100)); QCOMPARE(subSubWindow->mapFromParent(QPoint(120, 110)), QPoint(110, 100)); QCOMPARE(subSubWindow->mapFromParent(QPoint(110, 120)), QPoint(100, 110)); } void tst_QWidget::focusChainOnReparent() { QWidget window; QWidget *child1 = new QWidget(&window); QWidget *child2 = new QWidget(&window); QWidget *child3 = new QWidget(&window); QWidget *child21 = new QWidget(child2); QWidget *child22 = new QWidget(child2); QWidget *child4 = new QWidget(&window); QWidget *expectedOriginalChain[8] = {&window, child1, child2, child3, child21, child22, child4, &window}; QWidget *w = &window; for (int i = 0; i <8; ++i) { QCOMPARE(w, expectedOriginalChain[i]); w = w->nextInFocusChain(); } for (int i = 7; i >= 0; --i) { w = w->previousInFocusChain(); QCOMPARE(w, expectedOriginalChain[i]); } QWidget window2; child2->setParent(&window2); QWidget *expectedNewChain[5] = {&window2, child2, child21, child22, &window2}; w = &window2; for (int i = 0; i <5; ++i) { QCOMPARE(w, expectedNewChain[i]); w = w->nextInFocusChain(); } for (int i = 4; i >= 0; --i) { w = w->previousInFocusChain(); QCOMPARE(w, expectedNewChain[i]); } QWidget *expectedOldChain[5] = {&window, child1, child3, child4, &window}; w = &window; for (int i = 0; i <5; ++i) { QCOMPARE(w, expectedOldChain[i]); w = w->nextInFocusChain(); } for (int i = 4; i >= 0; --i) { w = w->previousInFocusChain(); QCOMPARE(w, expectedOldChain[i]); } } void tst_QWidget::focusChainOnHide() { testWidget->hide(); // We do not want to get disturbed by other widgets // focus should move to the next widget in the focus chain when we hide it. QWidget *parent = new QWidget(); parent->setObjectName(QLatin1String("Parent")); parent->setFocusPolicy(Qt::StrongFocus); QWidget *child = new QWidget(parent); child->setObjectName(QLatin1String("child")); child->setFocusPolicy(Qt::StrongFocus); QWidget::setTabOrder(child, parent); parent->show(); qApp->setActiveWindow(parent->window()); child->activateWindow(); child->setFocus(); qApp->processEvents(); QTRY_COMPARE(child->hasFocus(), true); child->hide(); qApp->processEvents(); QTRY_COMPARE(parent->hasFocus(), true); QCOMPARE(parent, qApp->focusWidget()); delete parent; testWidget->show(); //don't disturb later tests } void tst_QWidget::checkFocus() { #if !defined(QT3_SUPPORT) QSKIP("No Qt3 Support", SkipAll); #else // This is a very specific test for a specific bug, the bug was // that when setEnabled(FALSE) then setEnabled(TRUE) was called on // the parent of a child widget which had focus while hidden, then // when the widget was shown, the focus would be in the wrong place. Q3HBox widget; QLineEdit *focusWidget = new QLineEdit( &widget ); new QLineEdit( &widget ); new QPushButton( &widget ); focusWidget->setFocus(); widget.setEnabled( FALSE ); widget.setEnabled( TRUE ); widget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QTest::qWait( 100 ); widget.activateWindow(); // next call is necessary since the window manager may not give the focus to the widget when // it is shown, which causes the QVERIFY to fail QApplication::setActiveWindow(&widget); QVERIFY( qApp->focusWidget() == focusWidget ); #endif // QT3_SUPPORT } class Container : public QWidget { public: QVBoxLayout* box; Container() { box = new QVBoxLayout(this); //(new QVBoxLayout(this))->setAutoAdd(true); } void tab() { focusNextPrevChild(TRUE); } void backTab() { focusNextPrevChild(FALSE); } }; class Composite : public QFrame { public: Composite(QWidget* parent = 0, const char* name = 0) : QFrame(parent) { setObjectName(name); //QHBoxLayout* hbox = new QHBoxLayout(this, 2, 0); //hbox->setAutoAdd(true); QHBoxLayout* hbox = new QHBoxLayout(this); lineEdit = new QLineEdit(this); hbox->addWidget(lineEdit); button = new QPushButton(this); hbox->addWidget(button); button->setFocusPolicy( Qt::NoFocus ); setFocusProxy( lineEdit ); setFocusPolicy( Qt::StrongFocus ); setTabOrder(lineEdit, button); } private: QLineEdit* lineEdit; QPushButton* button; }; #define NUM_WIDGETS 4 void tst_QWidget::setTabOrder() { QTest::qWait(100); Container container; Composite* comp[NUM_WIDGETS]; QLineEdit *firstEdit = new QLineEdit(&container); container.box->addWidget(firstEdit); int i = 0; for(i = 0; i < NUM_WIDGETS; i++) { comp[i] = new Composite(&container); container.box->addWidget(comp[i]); } QLineEdit *lastEdit = new QLineEdit(&container); container.box->addWidget(lastEdit); container.setTabOrder(lastEdit, comp[NUM_WIDGETS-1]); for(i = NUM_WIDGETS-1; i > 0; i--) { container.setTabOrder(comp[i], comp[i-1]); } container.setTabOrder(comp[0], firstEdit); int current = NUM_WIDGETS-1; lastEdit->setFocus(); container.show(); container.activateWindow(); qApp->setActiveWindow(&container); #ifdef Q_WS_X11 QTest::qWaitForWindowShown(&container); QTest::qWait(50); #endif QTest::qWait(100); QTRY_VERIFY(lastEdit->hasFocus()); container.tab(); do { QVERIFY(comp[current]->focusProxy()->hasFocus()); container.tab(); current--; } while (current >= 0); QVERIFY(firstEdit->hasFocus()); } void tst_QWidget::activation() { #if !defined(Q_WS_WIN) QSKIP("This test is Windows-only.", SkipAll); #endif Q_CHECK_PAINTEVENTS #if defined(Q_OS_WINCE) int waitTime = 1000; #else int waitTime = 100; #endif #ifdef Q_OS_WINCE qApp->processEvents(); #endif QWidget widget1; widget1.setWindowTitle("Widget1"); QWidget widget2; widget2.setWindowTitle("Widget2"); widget1.show(); widget2.show(); QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget2); widget2.showMinimized(); QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget1); widget2.showMaximized(); QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget2); widget2.showMinimized(); QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget1); widget2.showNormal(); QTest::qWait(waitTime); #if defined(Q_WS_WIN) && !defined(Q_OS_WINCE) if (QSysInfo::WindowsVersion >= QSysInfo::WV_VISTA) QEXPECT_FAIL("", "MS introduced new behavior after XP", Continue); #endif QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget2); widget2.hide(); QTest::qWait(waitTime); QVERIFY(qApp->activeWindow() == &widget1); } void tst_QWidget::windowState() { #ifdef Q_WS_X11 QSKIP("Many window managers do not support window state properly, which causes this " "test to fail.", SkipAll); #else #ifdef Q_OS_WINCE_WM QPoint pos(500, 500); QSize size(200, 200); if (qt_wince_is_smartphone()) { //small screen pos = QPoint(10,10); size = QSize(100,100); } #elif defined(Q_WS_S60) QPoint pos = QPoint(10,10); QSize size = QSize(100,100); #else const QPoint pos(500, 500); const QSize size(200, 200); #endif QWidget widget1; widget1.move(pos); widget1.resize(size); QCOMPARE(widget1.pos(), pos); QCOMPARE(widget1.size(), size); QTest::qWait(100); widget1.setWindowTitle("Widget1"); QCOMPARE(widget1.pos(), pos); QCOMPARE(widget1.size(), size); #define VERIFY_STATE(s) QCOMPARE(int(widget1.windowState() & stateMask), int(s)) const int stateMask = Qt::WindowMaximized|Qt::WindowMinimized|Qt::WindowFullScreen; widget1.setWindowState(Qt::WindowMaximized); QTest::qWait(100); VERIFY_STATE(Qt::WindowMaximized); widget1.show(); QTest::qWait(100); VERIFY_STATE(Qt::WindowMaximized); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMaximized); QTest::qWait(100); QVERIFY(!(widget1.windowState() & Qt::WindowMaximized)); QCOMPARE(widget1.pos(), pos); widget1.setWindowState(Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE(Qt::WindowMinimized); widget1.setWindowState(widget1.windowState() | Qt::WindowMaximized); QTest::qWait(100); VERIFY_STATE((Qt::WindowMinimized|Qt::WindowMaximized)); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE(Qt::WindowMaximized); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMaximized); QTest::qWait(100); QVERIFY(!(widget1.windowState() & (Qt::WindowMinimized|Qt::WindowMaximized))); QCOMPARE(widget1.pos(), pos); widget1.setWindowState(Qt::WindowFullScreen); QTest::qWait(100); VERIFY_STATE(Qt::WindowFullScreen); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE((Qt::WindowFullScreen|Qt::WindowMinimized)); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE(Qt::WindowFullScreen); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMaximized); QTest::qWait(100); VERIFY_STATE((Qt::WindowFullScreen|Qt::WindowMaximized)); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE((Qt::WindowFullScreen|Qt::WindowMaximized|Qt::WindowMinimized)); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMinimized); QTest::qWait(100); VERIFY_STATE((Qt::WindowFullScreen|Qt::WindowMaximized)); widget1.setWindowState(widget1.windowState() ^ Qt::WindowFullScreen); QTest::qWait(100); VERIFY_STATE(Qt::WindowMaximized); widget1.setWindowState(widget1.windowState() ^ Qt::WindowMaximized); QTest::qWait(100); QVERIFY(!(widget1.windowState() & stateMask)); QCOMPARE(widget1.pos(), pos); QCOMPARE(widget1.size(), size); #endif } void tst_QWidget::showMaximized() { QWidget plain; QHBoxLayout *layout; layout = new QHBoxLayout; QWidget layouted; QLineEdit le; QLineEdit le2; QLineEdit le3; layout->addWidget(&le); layout->addWidget(&le2); layout->addWidget(&le3); layouted.setLayout(layout); plain.showMaximized(); QVERIFY(plain.windowState() & Qt::WindowMaximized); plain.showNormal(); QVERIFY(!(plain.windowState() & Qt::WindowMaximized)); layouted.showMaximized(); QVERIFY(layouted.windowState() & Qt::WindowMaximized); layouted.showNormal(); QVERIFY(!(layouted.windowState() & Qt::WindowMaximized)); #if !defined(Q_WS_QWS) && !defined(Q_OS_WINCE) && !defined(Q_WS_S60) && !defined(Q_WS_QPA) //embedded may choose a different size to fit on the screen. QCOMPARE(layouted.size(), layouted.sizeHint()); #endif layouted.showMaximized(); QVERIFY(layouted.isMaximized()); QVERIFY(layouted.isVisible()); layouted.hide(); QVERIFY(layouted.isMaximized()); QVERIFY(!layouted.isVisible()); layouted.showMaximized(); QVERIFY(layouted.isMaximized()); QVERIFY(layouted.isVisible()); layouted.showMinimized(); QVERIFY(layouted.isMinimized()); QVERIFY(layouted.isMaximized()); layouted.showMaximized(); QVERIFY(!layouted.isMinimized()); QVERIFY(layouted.isMaximized()); QVERIFY(layouted.isVisible()); layouted.showMinimized(); QVERIFY(layouted.isMinimized()); QVERIFY(layouted.isMaximized()); layouted.showMaximized(); QVERIFY(!layouted.isMinimized()); QVERIFY(layouted.isMaximized()); QVERIFY(layouted.isVisible()); { QWidget frame; QWidget widget(&frame); widget.showMaximized(); QVERIFY(widget.isMaximized()); } { QWidget widget; widget.setGeometry(0, 0, 10, 10); widget.showMaximized(); QTRY_VERIFY(widget.size().width() > 20 && widget.size().height() > 20); } #ifdef QT3_SUPPORT #if !defined(Q_WS_QWS) //embedded respects max/min sizes by design -- maybe wrong design, but that's the way it is now. { Q3HBox box; QWidget widget(&box); widget.setMinimumSize(500, 500); box.showMaximized(); QVERIFY(box.isMaximized()); } { Q3HBox box; QWidget widget(&box); widget.setMaximumSize(500, 500); box.showMaximized(); QVERIFY(box.isMaximized()); } #endif #endif // QT3_SUPPORT } void tst_QWidget::showFullScreen() { QWidget plain; QHBoxLayout *layout; QWidget layouted; QLineEdit le; QLineEdit le2; QLineEdit le3; layout = new QHBoxLayout; layout->addWidget(&le); layout->addWidget(&le2); layout->addWidget(&le3); layouted.setLayout(layout); plain.showFullScreen(); QVERIFY(plain.windowState() & Qt::WindowFullScreen); plain.showNormal(); QVERIFY(!(plain.windowState() & Qt::WindowFullScreen)); layouted.showFullScreen(); QVERIFY(layouted.windowState() & Qt::WindowFullScreen); layouted.showNormal(); QVERIFY(!(layouted.windowState() & Qt::WindowFullScreen)); #if !defined(Q_WS_QWS) && !defined(Q_OS_WINCE) && !defined (Q_WS_S60) && !defined(Q_WS_QPA) //embedded may choose a different size to fit on the screen. QCOMPARE(layouted.size(), layouted.sizeHint()); #endif layouted.showFullScreen(); QVERIFY(layouted.isFullScreen()); QVERIFY(layouted.isVisible()); layouted.hide(); QVERIFY(layouted.isFullScreen()); QVERIFY(!layouted.isVisible()); layouted.showFullScreen(); QVERIFY(layouted.isFullScreen()); QVERIFY(layouted.isVisible()); layouted.showMinimized(); QVERIFY(layouted.isMinimized()); QVERIFY(layouted.isFullScreen()); layouted.showFullScreen(); QVERIFY(!layouted.isMinimized()); QVERIFY(layouted.isFullScreen()); QVERIFY(layouted.isVisible()); layouted.showMinimized(); QVERIFY(layouted.isMinimized()); QVERIFY(layouted.isFullScreen()); layouted.showFullScreen(); QVERIFY(!layouted.isMinimized()); QVERIFY(layouted.isFullScreen()); QVERIFY(layouted.isVisible()); { QWidget frame; QWidget widget(&frame); widget.showFullScreen(); QVERIFY(widget.isFullScreen()); } #ifdef QT3_SUPPORT #if !defined(Q_WS_QWS) //embedded respects max/min sizes by design -- maybe wrong design, but that's the way it is now. { Q3HBox box; QWidget widget(&box); widget.setMinimumSize(500, 500); box.showFullScreen(); QVERIFY(box.isFullScreen()); } { Q3HBox box; QWidget widget(&box); widget.setMaximumSize(500, 500); box.showFullScreen(); QVERIFY(box.isFullScreen()); } #endif #endif // QT3_SUPPORT } class ResizeWidget : public QWidget { public: ResizeWidget(QWidget *p = 0) : QWidget(p) { m_resizeEventCount = 0; } protected: void resizeEvent(QResizeEvent *e){ QCOMPARE(size(), e->size()); ++m_resizeEventCount; } public: int m_resizeEventCount; }; void tst_QWidget::resizeEvent() { { QWidget wParent; ResizeWidget wChild(&wParent); wParent.show(); QCOMPARE (wChild.m_resizeEventCount, 1); // initial resize event before paint wParent.hide(); QSize safeSize(640,480); if (wChild.size() == safeSize) safeSize.setWidth(639); wChild.resize(safeSize); QCOMPARE (wChild.m_resizeEventCount, 1); wParent.show(); QCOMPARE (wChild.m_resizeEventCount, 2); } { ResizeWidget wTopLevel; wTopLevel.show(); QCOMPARE (wTopLevel.m_resizeEventCount, 1); // initial resize event before paint for toplevels wTopLevel.hide(); QSize safeSize(640,480); if (wTopLevel.size() == safeSize) safeSize.setWidth(639); wTopLevel.resize(safeSize); QCOMPARE (wTopLevel.m_resizeEventCount, 1); wTopLevel.show(); QCOMPARE (wTopLevel.m_resizeEventCount, 2); } } void tst_QWidget::showMinimized() { QWidget plain; plain.move(100, 100); plain.resize(200, 200); QPoint pos = plain.pos(); plain.showMinimized(); QVERIFY(plain.isMinimized()); QVERIFY(plain.isVisible()); QCOMPARE(plain.pos(), pos); plain.showNormal(); QVERIFY(!plain.isMinimized()); QVERIFY(plain.isVisible()); QCOMPARE(plain.pos(), pos); plain.showMinimized(); QVERIFY(plain.isMinimized()); QVERIFY(plain.isVisible()); QCOMPARE(plain.pos(), pos); plain.hide(); QVERIFY(plain.isMinimized()); QVERIFY(!plain.isVisible()); plain.showMinimized(); QVERIFY(plain.isMinimized()); QVERIFY(plain.isVisible()); plain.setGeometry(200, 200, 300, 300); plain.showNormal(); QCOMPARE(plain.geometry(), QRect(200, 200, 300, 300)); { QWidget frame; QWidget widget(&frame); widget.showMinimized(); QVERIFY(widget.isMinimized()); } } void tst_QWidget::showMinimizedKeepsFocus() { //here we test that minimizing a widget and restoring it doesn't change the focus inside of it { QWidget window; QWidget child1(&window), child2(&window); child1.setFocusPolicy(Qt::StrongFocus); child2.setFocusPolicy(Qt::StrongFocus); window.show(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); child2.setFocus(); QTest::qWait(50); QTRY_COMPARE(window.focusWidget(), &child2); QTRY_COMPARE(qApp->focusWidget(), &child2); window.showMinimized(); QTest::qWait(10); QTRY_VERIFY(window.isMinimized()); QTRY_COMPARE(window.focusWidget(), &child2); window.showNormal(); QTest::qWait(10); QTRY_COMPARE(window.focusWidget(), &child2); } //testing deletion of the focusWidget { QWidget window; QWidget *child = new QWidget(&window); child->setFocusPolicy(Qt::StrongFocus); window.show(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); child->setFocus(); QTest::qWait(50); QTRY_COMPARE(window.focusWidget(), child); QTRY_COMPARE(qApp->focusWidget(), child); delete child; QCOMPARE(window.focusWidget(), static_cast<QWidget*>(0)); QCOMPARE(qApp->focusWidget(), static_cast<QWidget*>(0)); } //testing reparenting the focus widget { QWidget window; QWidget *child = new QWidget(&window); child->setFocusPolicy(Qt::StrongFocus); window.show(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); child->setFocus(); QTest::qWait(50); QTRY_COMPARE(window.focusWidget(), child); QTRY_COMPARE(qApp->focusWidget(), child); child->setParent(0); QCOMPARE(window.focusWidget(), static_cast<QWidget*>(0)); QCOMPARE(qApp->focusWidget(), static_cast<QWidget*>(0)); } //testing setEnabled(false) { QWidget window; QWidget *child = new QWidget(&window); child->setFocusPolicy(Qt::StrongFocus); window.show(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); child->setFocus(); QTest::qWait(10); QTRY_COMPARE(window.focusWidget(), child); QTRY_COMPARE(qApp->focusWidget(), child); child->setEnabled(false); QCOMPARE(window.focusWidget(), static_cast<QWidget*>(0)); QCOMPARE(qApp->focusWidget(), static_cast<QWidget*>(0)); } //testing clearFocus { QWidget window; QWidget *firstchild = new QWidget(&window); firstchild->setFocusPolicy(Qt::StrongFocus); QWidget *child = new QWidget(&window); child->setFocusPolicy(Qt::StrongFocus); window.show(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); child->setFocus(); QTest::qWait(10); QTRY_COMPARE(window.focusWidget(), child); QTRY_COMPARE(qApp->focusWidget(), child); child->clearFocus(); QCOMPARE(window.focusWidget(), static_cast<QWidget*>(0)); QCOMPARE(qApp->focusWidget(), static_cast<QWidget*>(0)); window.showMinimized(); QTest::qWait(30); QTRY_VERIFY(window.isMinimized()); #ifdef Q_WS_QWS QEXPECT_FAIL("", "QWS does not implement showMinimized()", Continue); #endif QCOMPARE(window.focusWidget(), static_cast<QWidget*>(0)); #ifdef Q_WS_QWS QEXPECT_FAIL("", "QWS does not implement showMinimized()", Continue); #endif QTRY_COMPARE(qApp->focusWidget(), static_cast<QWidget*>(0)); window.showNormal(); qApp->setActiveWindow(&window); QTest::qWaitForWindowShown(&window); QTest::qWait(30); #ifdef Q_WS_MAC if (!macHasAccessToWindowsServer()) QEXPECT_FAIL("", "When not having WindowServer access, we lose focus.", Continue); #endif QTRY_COMPARE(window.focusWidget(), firstchild); #ifdef Q_WS_MAC if (!macHasAccessToWindowsServer()) QEXPECT_FAIL("", "When not having WindowServer access, we lose focus.", Continue); #endif QTRY_COMPARE(qApp->focusWidget(), firstchild); } } void tst_QWidget::reparent() { QWidget parent; parent.setWindowTitle("Toplevel"); parent.setGeometry(300, 300, 200, 150); QWidget child(0); child.setObjectName("child"); child.setGeometry(10, 10, 180, 130); QPalette pal1; pal1.setColor(child.backgroundRole(), Qt::white); child.setPalette(pal1); QWidget childTLW(&child, Qt::Window); childTLW.setObjectName("childTLW"); childTLW.setGeometry(100, 100, 50, 50); QPalette pal2; pal2.setColor(childTLW.backgroundRole(), Qt::yellow); childTLW.setPalette(pal2); parent.show(); childTLW.show(); QTest::qWaitForWindowShown(&parent); #ifdef Q_OS_WINCE parent.move(50, 50); #else parent.move(300, 300); #endif QPoint childPos = parent.mapToGlobal(child.pos()); QPoint tlwPos = childTLW.pos(); child.setParent(0, child.windowFlags() & ~Qt::WindowType_Mask); child.setGeometry(childPos.x(), childPos.y(), child.width(), child.height()); child.show(); #ifdef Q_WS_X11 // On X11, the window manager will apply NorthWestGravity rules to 'child', which // means the top-left corner of the window frame will be placed at 'childPos', // causing this test to fail #else QCOMPARE(child.geometry().topLeft(), childPos); #endif QTRY_COMPARE(childTLW.pos(), tlwPos); #ifdef Q_WS_WIN QWidget childTLWChild(&childTLW); childTLWChild.setObjectName("childTLWChild"); QWidget grandChild(&child); grandChild.setObjectName("grandChild"); grandChild.setGeometry(10, 10, 160, 110); QPalette pal3; pal3.setColor(grandChild.backgroundRole(), Qt::red); grandChild.setPalette(pal3); //grandChild.setPaletteBackgroundColor(Qt::red); QWidget grandChildTLW(&grandChild, Qt::Window); grandChildTLW.setObjectName("grandChildTLW"); grandChildTLW.setGeometry(200, 200, 50, 50); QPalette pal4; pal4.setColor(grandChildTLW.backgroundRole(), Qt::yellow); grandChildTLW.setPalette(pal4); //grandChildTLW.setPaletteBackgroundColor(Qt::yellow); QWidget grandChildTLWChild(&grandChildTLW); grandChildTLWChild.setObjectName("grandChildTLWChild"); QVERIFY(IsWindow(childTLW.winId())); QVERIFY(IsWindow(childTLWChild.winId())); QVERIFY(IsWindow(grandChildTLW.winId())); QVERIFY(IsWindow(grandChildTLWChild.winId())); parent.show(); QVERIFY(IsWindow(childTLW.winId())); QVERIFY(IsWindow(childTLWChild.winId())); QVERIFY(IsWindow(grandChildTLW.winId())); QVERIFY(IsWindow(grandChildTLWChild.winId())); child.setParent(&parent); child.move(10,10); child.show(); // this appears to stabelize results qApp->processEvents(); QVERIFY(IsWindow(childTLW.winId())); QVERIFY(IsWindow(childTLWChild.winId())); QVERIFY(IsWindow(grandChildTLW.winId())); QVERIFY(IsWindow(grandChildTLWChild.winId())); #else QSKIP("This test makes only sense on Windows", SkipAll); #endif } void tst_QWidget::icon() { #if defined(Q_WS_QWS) QSKIP("Qt/Embedded does it differently", SkipAll); #else QPixmap p(20,20); p.fill(Qt::red); testWidget->setWindowIcon(p); QVERIFY(!testWidget->windowIcon().isNull()); testWidget->show(); QVERIFY(!testWidget->windowIcon().isNull()); testWidget->showFullScreen(); QVERIFY(!testWidget->windowIcon().isNull()); testWidget->showNormal(); QVERIFY(!testWidget->windowIcon().isNull()); #endif } void tst_QWidget::hideWhenFocusWidgetIsChild() { testWidget->activateWindow(); QWidget *parentWidget = new QWidget(testWidget); parentWidget->setObjectName("parentWidget"); parentWidget->setGeometry(0, 0, 100, 100); QLineEdit *edit = new QLineEdit(parentWidget); edit->setObjectName("edit1"); QLineEdit *edit3 = new QLineEdit(parentWidget); edit3->setObjectName("edit3"); edit3->move(0,50); parentWidget->show(); QLineEdit *edit2 = new QLineEdit(testWidget); edit2->setObjectName("edit2"); edit2->show(); edit2->move(110, 100); edit->setFocus(); qApp->processEvents(); QString actualFocusWidget, expectedFocusWidget; #ifdef Q_WS_X11 if (!qApp->focusWidget()) QSKIP("Your window manager is too broken for this test", SkipAll); #endif QVERIFY(qApp->focusWidget()); actualFocusWidget.sprintf("%p %s %s", qApp->focusWidget(), qApp->focusWidget()->objectName().toLatin1().constData(), qApp->focusWidget()->metaObject()->className()); expectedFocusWidget.sprintf("%p %s %s", edit, edit->objectName().toLatin1().constData(), edit->metaObject()->className()); QCOMPARE(actualFocusWidget, expectedFocusWidget); parentWidget->hide(); qApp->processEvents(); actualFocusWidget.sprintf("%p %s %s", qApp->focusWidget(), qApp->focusWidget()->objectName().toLatin1().constData(), qApp->focusWidget()->metaObject()->className()); expectedFocusWidget.sprintf("%p %s %s", edit2, edit2->objectName().toLatin1().constData(), edit2->metaObject()->className()); QCOMPARE(actualFocusWidget, expectedFocusWidget); delete edit2; delete parentWidget; } void tst_QWidget::normalGeometry() { #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #endif QWidget parent; parent.setWindowTitle("NormalGeometry parent"); QWidget *child = new QWidget(&parent); QCOMPARE(parent.normalGeometry(), parent.geometry()); QCOMPARE(child->normalGeometry(), QRect()); parent.setGeometry(100, 100, 200, 200); parent.show(); QTest::qWaitForWindowShown(&parent); QApplication::processEvents(); QRect geom = parent.geometry(); // ### the window manager places the top-left corner at // ### 100,100... making geom something like 102,124 (offset by // ### the frame/frame)... this indicates a rather large different // ### between how X11 and Windows works // QCOMPARE(geom, QRect(100, 100, 200, 200)); QCOMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowMaximized); QTest::qWait(10); QTRY_VERIFY(parent.windowState() & Qt::WindowMaximized); QTRY_VERIFY(parent.geometry() != geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowMaximized); QTest::qWait(10); QTRY_VERIFY(!(parent.windowState() & Qt::WindowMaximized)); QTRY_COMPARE(parent.geometry(), geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.showMaximized(); QTest::qWait(10); QTRY_VERIFY(parent.windowState() & Qt::WindowMaximized); QTRY_VERIFY(parent.geometry() != geom); QCOMPARE(parent.normalGeometry(), geom); parent.showNormal(); QTest::qWait(10); QTRY_VERIFY(!(parent.windowState() & Qt::WindowMaximized)); QTRY_COMPARE(parent.geometry(), geom); QCOMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowMinimized); QTest::qWait(10); parent.setWindowState(parent.windowState() ^ Qt::WindowMaximized); QTest::qWait(10); QTRY_VERIFY(parent.windowState() & (Qt::WindowMinimized|Qt::WindowMaximized)); // ### when minimized and maximized at the same time, the geometry // ### does *NOT* have to be the normal geometry, it could be the // ### maximized geometry. // QCOMPARE(parent.geometry(), geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowMinimized); QTest::qWait(10); QTRY_VERIFY(!(parent.windowState() & Qt::WindowMinimized)); QTRY_VERIFY(parent.windowState() & Qt::WindowMaximized); QTRY_VERIFY(parent.geometry() != geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowMaximized); QTest::qWait(10); QTRY_VERIFY(!(parent.windowState() & Qt::WindowMaximized)); QTRY_COMPARE(parent.geometry(), geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowFullScreen); QTest::qWait(10); QTRY_VERIFY(parent.windowState() & Qt::WindowFullScreen); QTRY_VERIFY(parent.geometry() != geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.setWindowState(parent.windowState() ^ Qt::WindowFullScreen); QTest::qWait(10); QVERIFY(!(parent.windowState() & Qt::WindowFullScreen)); QTRY_COMPARE(parent.geometry(), geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.showFullScreen(); QTest::qWait(10); QTRY_VERIFY(parent.windowState() & Qt::WindowFullScreen); QTRY_VERIFY(parent.geometry() != geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.showNormal(); QTest::qWait(10); QTRY_VERIFY(!(parent.windowState() & Qt::WindowFullScreen)); QTRY_COMPARE(parent.geometry(), geom); QTRY_COMPARE(parent.normalGeometry(), geom); parent.showNormal(); parent.setWindowState(Qt:: WindowFullScreen | Qt::WindowMaximized); parent.setWindowState(Qt::WindowMinimized | Qt:: WindowFullScreen | Qt::WindowMaximized); parent.setWindowState(Qt:: WindowFullScreen | Qt::WindowMaximized); QTest::qWait(10); QTRY_COMPARE(parent.normalGeometry(), geom); } void tst_QWidget::setGeometry() { QWidget tlw; QWidget child(&tlw); QRect tr(100,100,200,200); QRect cr(50,50,50,50); tlw.setGeometry(tr); child.setGeometry(cr); tlw.show(); QTest::qWait(50); QCOMPARE(tlw.geometry().size(), tr.size()); QCOMPARE(child.geometry(), cr); tlw.setParent(0, Qt::Window|Qt::FramelessWindowHint); tr = QRect(0,0,100,100); tr.moveTopLeft(QApplication::desktop()->availableGeometry().topLeft()); tlw.setGeometry(tr); QCOMPARE(tlw.geometry(), tr); tlw.show(); QTest::qWait(50); if (tlw.frameGeometry() != tlw.geometry()) QSKIP("Your window manager is too broken for this test", SkipAll); QCOMPARE(tlw.geometry(), tr); } void tst_QWidget::windowOpacity() { #ifdef Q_OS_WINCE QSKIP( "Windows CE does not support windowOpacity", SkipAll); #endif QWidget widget; QWidget child(&widget); // Initial value should be 1.0 QCOMPARE(widget.windowOpacity(), 1.0); // children should always return 1.0 QCOMPARE(child.windowOpacity(), 1.0); widget.setWindowOpacity(0.0); QCOMPARE(widget.windowOpacity(), 0.0); child.setWindowOpacity(0.0); QCOMPARE(child.windowOpacity(), 1.0); widget.setWindowOpacity(1.0); QCOMPARE(widget.windowOpacity(), 1.0); child.setWindowOpacity(1.0); QCOMPARE(child.windowOpacity(), 1.0); widget.setWindowOpacity(2.0); QCOMPARE(widget.windowOpacity(), 1.0); child.setWindowOpacity(2.0); QCOMPARE(child.windowOpacity(), 1.0); widget.setWindowOpacity(-1.0); QCOMPARE(widget.windowOpacity(), 0.0); child.setWindowOpacity(-1.0); QCOMPARE(child.windowOpacity(), 1.0); } class UpdateWidget : public QWidget { public: UpdateWidget(QWidget *parent = 0) : QWidget(parent) { reset(); } void paintEvent(QPaintEvent *e) { paintedRegion += e->region(); ++numPaintEvents; if (resizeInPaintEvent) { resizeInPaintEvent = false; resize(size() + QSize(2, 2)); } } bool event(QEvent *event) { switch (event->type()) { case QEvent::ZOrderChange: ++numZOrderChangeEvents; break; case QEvent::UpdateRequest: ++numUpdateRequestEvents; break; case QEvent::ActivationChange: case QEvent::FocusIn: case QEvent::FocusOut: case QEvent::WindowActivate: case QEvent::WindowDeactivate: if (!updateOnActivationChangeAndFocusIn) return true; // Filter out to avoid update() calls in QWidget. break; default: break; } return QWidget::event(event); } void reset() { numPaintEvents = 0; numZOrderChangeEvents = 0; numUpdateRequestEvents = 0; updateOnActivationChangeAndFocusIn = false; resizeInPaintEvent = false; paintedRegion = QRegion(); } int numPaintEvents; int numZOrderChangeEvents; int numUpdateRequestEvents; bool updateOnActivationChangeAndFocusIn; bool resizeInPaintEvent; QRegion paintedRegion; }; void tst_QWidget::lostUpdatesOnHide() { #ifndef Q_WS_MAC UpdateWidget widget; widget.setAttribute(Qt::WA_DontShowOnScreen); widget.show(); widget.hide(); QTest::qWait(50); widget.show(); QTest::qWait(50); QCOMPARE(widget.numPaintEvents, 1); #endif } void tst_QWidget::raise() { QTest::qWait(10); QWidget *parent = new QWidget(0); QList<UpdateWidget *> allChildren; UpdateWidget *child1 = new UpdateWidget(parent); child1->setAutoFillBackground(true); allChildren.append(child1); UpdateWidget *child2 = new UpdateWidget(parent); child2->setAutoFillBackground(true); allChildren.append(child2); UpdateWidget *child3 = new UpdateWidget(parent); child3->setAutoFillBackground(true); allChildren.append(child3); UpdateWidget *child4 = new UpdateWidget(parent); child4->setAutoFillBackground(true); allChildren.append(child4); parent->show(); QTest::qWaitForWindowShown(parent); QTest::qWait(10); #ifdef QT_MAC_USE_COCOA if (child1->internalWinId()) { QSKIP("Cocoa has no Z-Order for views, we hack it, but it results in paint events.", SkipAll); } #endif QList<QObject *> list1; list1 << child1 << child2 << child3 << child4; QVERIFY(parent->children() == list1); QCOMPARE(allChildren.count(), list1.count()); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child4 ? 1 : 0; if (expectedPaintEvents == 0) { QVERIFY(child->numPaintEvents == 0); } else { // show() issues multiple paint events on some window managers QTRY_VERIFY(child->numPaintEvents >= expectedPaintEvents); } QCOMPARE(child->numZOrderChangeEvents, 0); child->reset(); } for (int i = 0; i < 5; ++i) child2->raise(); QTest::qWait(50); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child2 ? 1 : 0; int expectedZOrderChangeEvents = child == child2 ? 1 : 0; #ifdef QT_MAC_USE_COCOA QSKIP("Not yet sure why this fails.", SkipSingle); #endif QTRY_COMPARE(child->numPaintEvents, expectedPaintEvents); QCOMPARE(child->numZOrderChangeEvents, expectedZOrderChangeEvents); child->reset(); } QList<QObject *> list2; list2 << child1 << child3 << child4 << child2; QVERIFY(parent->children() == list2); // Creates a widget on top of all the children and checks that raising one of // the children underneath doesn't trigger a repaint on the covering widget. QWidget topLevel; parent->setParent(&topLevel); topLevel.show(); QTest::qWaitForWindowShown(&topLevel); QTest::qWait(50); UpdateWidget *onTop = new UpdateWidget(&topLevel); onTop->reset(); onTop->resize(topLevel.size()); onTop->setAutoFillBackground(true); onTop->show(); QTest::qWait(50); QTRY_VERIFY(onTop->numPaintEvents > 0); onTop->reset(); // Reset all the children. foreach (UpdateWidget *child, allChildren) child->reset(); for (int i = 0; i < 5; ++i) child3->raise(); QTest::qWait(50); QCOMPARE(onTop->numPaintEvents, 0); QCOMPARE(onTop->numZOrderChangeEvents, 0); QList<QObject *> list3; list3 << child1 << child4 << child2 << child3; QVERIFY(parent->children() == list3); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = 0; int expectedZOrderChangeEvents = child == child3 ? 1 : 0; QTRY_COMPARE(child->numPaintEvents, expectedPaintEvents); QCOMPARE(child->numZOrderChangeEvents, expectedZOrderChangeEvents); child->reset(); } } void tst_QWidget::lower() { #ifdef QT_MAC_USE_COCOA QSKIP("Cocoa has no Z-Order for views, we hack it, but it results in paint events.", SkipAll); #endif QWidget *parent = new QWidget(0); QList<UpdateWidget *> allChildren; UpdateWidget *child1 = new UpdateWidget(parent); child1->setAutoFillBackground(true); allChildren.append(child1); UpdateWidget *child2 = new UpdateWidget(parent); child2->setAutoFillBackground(true); allChildren.append(child2); UpdateWidget *child3 = new UpdateWidget(parent); child3->setAutoFillBackground(true); allChildren.append(child3); UpdateWidget *child4 = new UpdateWidget(parent); child4->setAutoFillBackground(true); allChildren.append(child4); parent->show(); QTest::qWaitForWindowShown(parent); QTest::qWait(100); QList<QObject *> list1; list1 << child1 << child2 << child3 << child4; QVERIFY(parent->children() == list1); QCOMPARE(allChildren.count(), list1.count()); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child4 ? 1 : 0; if (expectedPaintEvents == 0) { QVERIFY(child->numPaintEvents == 0); } else { // show() issues multiple paint events on some window managers QTRY_VERIFY(child->numPaintEvents >= expectedPaintEvents); } QCOMPARE(child->numZOrderChangeEvents, 0); child->reset(); } for (int i = 0; i < 5; ++i) child4->lower(); QTest::qWait(100); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child3 ? 1 : 0; int expectedZOrderChangeEvents = child == child4 ? 1 : 0; QTRY_COMPARE(child->numZOrderChangeEvents, expectedZOrderChangeEvents); QTRY_COMPARE(child->numPaintEvents, expectedPaintEvents); child->reset(); } QList<QObject *> list2; list2 << child4 << child1 << child2 << child3; QVERIFY(parent->children() == list2); delete parent; } void tst_QWidget::stackUnder() { #ifdef QT_MAC_USE_COCOA QSKIP("Cocoa has no Z-Order for views, we hack it, but it results in paint events.", SkipAll); #endif QTest::qWait(10); QWidget *parent = new QWidget(0); QList<UpdateWidget *> allChildren; UpdateWidget *child1 = new UpdateWidget(parent); child1->setAutoFillBackground(true); allChildren.append(child1); UpdateWidget *child2 = new UpdateWidget(parent); child2->setAutoFillBackground(true); allChildren.append(child2); UpdateWidget *child3 = new UpdateWidget(parent); child3->setAutoFillBackground(true); allChildren.append(child3); UpdateWidget *child4 = new UpdateWidget(parent); child4->setAutoFillBackground(true); allChildren.append(child4); parent->show(); QTest::qWaitForWindowShown(parent); QTest::qWait(10); #ifdef Q_WS_QWS QApplication::sendPostedEvents(); //glib workaround #endif QList<QObject *> list1; list1 << child1 << child2 << child3 << child4; QVERIFY(parent->children() == list1); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child4 ? 1 : 0; #if defined(Q_WS_WIN) || defined(Q_WS_MAC) if (expectedPaintEvents == 1 && child->numPaintEvents == 2) QEXPECT_FAIL(0, "Mac and Windows issues double repaints for Z-Order change", Continue); #endif QTRY_COMPARE(child->numPaintEvents, expectedPaintEvents); QCOMPARE(child->numZOrderChangeEvents, 0); child->reset(); } for (int i = 0; i < 5; ++i) child4->stackUnder(child2); QTest::qWait(10); QList<QObject *> list2; list2 << child1 << child4 << child2 << child3; QVERIFY(parent->children() == list2); foreach (UpdateWidget *child, allChildren) { int expectedPaintEvents = child == child3 ? 1 : 0; int expectedZOrderChangeEvents = child == child4 ? 1 : 0; QTRY_COMPARE(child->numPaintEvents, expectedPaintEvents); QTRY_COMPARE(child->numZOrderChangeEvents, expectedZOrderChangeEvents); child->reset(); } for (int i = 0; i < 5; ++i) child1->stackUnder(child3); QTest::qWait(10); QList<QObject *> list3; list3 << child4 << child2 << child1 << child3; QVERIFY(parent->children() == list3); foreach (UpdateWidget *child, allChildren) { int expectedZOrderChangeEvents = child == child1 ? 1 : 0; if (child == child3) { #ifdef Q_OS_WINCE qApp->processEvents(); #endif #ifndef Q_WS_MAC QEXPECT_FAIL(0, "See QTBUG-493", Continue); #endif QCOMPARE(child->numPaintEvents, 0); } else { QCOMPARE(child->numPaintEvents, 0); } QTRY_COMPARE(child->numZOrderChangeEvents, expectedZOrderChangeEvents); child->reset(); } delete parent; } void drawPolygon(QPaintDevice *dev, int w, int h) { QPainter p(dev); p.fillRect(0, 0, w, h, Qt::white); QPolygon a; a << QPoint(0, 0) << QPoint(w/2, h/2) << QPoint(w, 0) << QPoint(w/2, h) << QPoint(0, 0); p.setPen(QPen(Qt::black, 1)); p.setBrush(Qt::DiagCrossPattern); p.drawPolygon(a); } class ContentsPropagationWidget : public QWidget { Q_OBJECT public: ContentsPropagationWidget(QWidget *parent = 0) : QWidget(parent) { QWidget *child = this; for (int i=0; i<32; ++i) { child = new QWidget(child); child->setGeometry(i, i, 400 - i*2, 400 - i*2); } } void setContentsPropagation(bool enable) { foreach (QObject *child, children()) qobject_cast<QWidget *>(child)->setAutoFillBackground(!enable); } protected: void paintEvent(QPaintEvent *) { int w = width(), h = height(); drawPolygon(this, w, h); } QSize sizeHint() const { return QSize(500, 500); } }; void tst_QWidget::testContentsPropagation() { ContentsPropagationWidget widget; #ifdef Q_WS_QWS widget.resize(500,500); #else widget.setFixedSize(500, 500); #endif widget.setContentsPropagation(false); QPixmap widgetSnapshot = QPixmap::grabWidget(&widget); QPixmap correct(500, 500); drawPolygon(&correct, 500, 500); //correct.save("correct.png", "PNG"); //widgetSnapshot.save("snap1.png", "PNG"); QVERIFY(widgetSnapshot.toImage() != correct.toImage()); widget.setContentsPropagation(true); widgetSnapshot = QPixmap::grabWidget(&widget); //widgetSnapshot.save("snap2.png", "PNG"); QCOMPARE(widgetSnapshot, correct); } /* Test that saving and restoring window geometry with saveGeometry() and restoreGeometry() works. */ void tst_QWidget::saveRestoreGeometry() { #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #endif const QPoint position(100, 100); const QSize size(200, 200); QByteArray savedGeometry; { QWidget widget; widget.move(position); widget.resize(size); widget.show(); QTest::qWaitForWindowShown(&widget); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), position); QCOMPARE(widget.size(), size); savedGeometry = widget.saveGeometry(); } { QWidget widget; const QByteArray empty; const QByteArray one("a"); const QByteArray two("ab"); const QByteArray three("abc"); const QByteArray four("abca"); const QByteArray garbage("abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc"); QVERIFY(widget.restoreGeometry(empty) == false); QVERIFY(widget.restoreGeometry(one) == false); QVERIFY(widget.restoreGeometry(two) == false); QVERIFY(widget.restoreGeometry(three) == false); QVERIFY(widget.restoreGeometry(four) == false); QVERIFY(widget.restoreGeometry(garbage) == false); QVERIFY(widget.restoreGeometry(savedGeometry)); widget.show(); QTest::qWaitForWindowShown(&widget); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), position); QCOMPARE(widget.size(), size); widget.show(); QCOMPARE(widget.pos(), position); QCOMPARE(widget.size(), size); } { QWidget widget; widget.move(position); widget.resize(size); widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(500); QTRY_COMPARE(widget.geometry().size(), size); QRect geom; //Restore from Full screen savedGeometry = widget.saveGeometry(); geom = widget.geometry(); widget.setWindowState(widget.windowState() | Qt::WindowFullScreen); QTRY_VERIFY((widget.windowState() & Qt::WindowFullScreen)); QTest::qWait(500); QVERIFY(widget.restoreGeometry(savedGeometry)); QTest::qWait(120); QTRY_VERIFY(!(widget.windowState() & Qt::WindowFullScreen)); QTRY_COMPARE(widget.geometry(), geom); //Restore to full screen widget.setWindowState(widget.windowState() | Qt::WindowFullScreen); QTest::qWait(120); QTRY_VERIFY((widget.windowState() & Qt::WindowFullScreen)); QTest::qWait(500); savedGeometry = widget.saveGeometry(); geom = widget.geometry(); widget.setWindowState(widget.windowState() ^ Qt::WindowFullScreen); QTest::qWait(120); QTRY_VERIFY(!(widget.windowState() & Qt::WindowFullScreen)); QTest::qWait(400); QVERIFY(widget.restoreGeometry(savedGeometry)); QTest::qWait(120); QTRY_VERIFY((widget.windowState() & Qt::WindowFullScreen)); QTRY_COMPARE(widget.geometry(), geom); QVERIFY((widget.windowState() & Qt::WindowFullScreen)); widget.setWindowState(widget.windowState() ^ Qt::WindowFullScreen); QTest::qWait(120); QTRY_VERIFY(!(widget.windowState() & Qt::WindowFullScreen)); QTest::qWait(120); //Restore from Maximised widget.move(position); widget.resize(size); QTest::qWait(10); QTRY_COMPARE(widget.size(), size); QTest::qWait(500); savedGeometry = widget.saveGeometry(); geom = widget.geometry(); widget.setWindowState(widget.windowState() | Qt::WindowMaximized); QTest::qWait(120); QTRY_VERIFY((widget.windowState() & Qt::WindowMaximized)); QTRY_VERIFY(widget.geometry() != geom); QTest::qWait(500); QVERIFY(widget.restoreGeometry(savedGeometry)); QTest::qWait(120); QTRY_COMPARE(widget.geometry(), geom); QVERIFY(!(widget.windowState() & Qt::WindowMaximized)); //Restore to maximised widget.setWindowState(widget.windowState() | Qt::WindowMaximized); QTest::qWait(120); QTRY_VERIFY((widget.windowState() & Qt::WindowMaximized)); QTest::qWait(500); geom = widget.geometry(); savedGeometry = widget.saveGeometry(); widget.setWindowState(widget.windowState() ^ Qt::WindowMaximized); QTest::qWait(120); QTRY_VERIFY(!(widget.windowState() & Qt::WindowMaximized)); QTest::qWait(500); QVERIFY(widget.restoreGeometry(savedGeometry)); QTest::qWait(120); QTRY_VERIFY((widget.windowState() & Qt::WindowMaximized)); QTRY_COMPARE(widget.geometry(), geom); } } void tst_QWidget::restoreVersion1Geometry_data() { QTest::addColumn<QString>("fileName"); QTest::addColumn<uint>("expectedWindowState"); QTest::addColumn<QPoint>("expectedPosition"); QTest::addColumn<QSize>("expectedSize"); QTest::addColumn<QRect>("expectedNormalGeometry"); const QPoint position(100, 100); const QSize size(200, 200); const QRect normalGeometry(102, 124, 200, 200); QTest::newRow("geometry.dat") << ":geometry.dat" << uint(Qt::WindowNoState) << position << size << normalGeometry; QTest::newRow("geometry-maximized.dat") << ":geometry-maximized.dat" << uint(Qt::WindowMaximized) << position << size << normalGeometry; QTest::newRow("geometry-fullscreen.dat") << ":geometry-fullscreen.dat" << uint(Qt::WindowFullScreen) << position << size << normalGeometry; } /* Test that the current version of restoreGeometry() can restore geometry saved width saveGeometry() version 1.0. */ void tst_QWidget::restoreVersion1Geometry() { #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #endif QFETCH(QString, fileName); QFETCH(uint, expectedWindowState); QFETCH(QPoint, expectedPosition); QFETCH(QSize, expectedSize); QFETCH(QRect, expectedNormalGeometry); // WindowActive is uninteresting for this test const uint WindowStateMask = Qt::WindowFullScreen | Qt::WindowMaximized | Qt::WindowMinimized; QFile f(fileName); QVERIFY(f.exists()); f.open(QIODevice::ReadOnly); const QByteArray savedGeometry = f.readAll(); QCOMPARE(savedGeometry.count(), 46); f.close(); QWidget widget; QVERIFY(widget.restoreGeometry(savedGeometry)); QCOMPARE(uint(widget.windowState() & WindowStateMask), expectedWindowState); if (expectedWindowState == Qt::WindowNoState) { QCOMPARE(widget.pos(), expectedPosition); QCOMPARE(widget.size(), expectedSize); } widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(100); if (expectedWindowState == Qt::WindowNoState) { QTRY_COMPARE(widget.pos(), expectedPosition); QTRY_COMPARE(widget.size(), expectedSize); } widget.showNormal(); QTest::qWait(10); if (expectedWindowState != Qt::WindowNoState) { // restoring from maximized or fullscreen, we can only restore to the normal geometry QTRY_COMPARE(widget.geometry(), expectedNormalGeometry); } else { QTRY_COMPARE(widget.pos(), expectedPosition); QTRY_COMPARE(widget.size(), expectedSize); } #if 0 // Code for saving a new geometry*.dat files { QWidget widgetToSave; widgetToSave.move(expectedPosition); widgetToSave.resize(expectedSize); widgetToSave.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QTest::qWait(500); // stabilize widgetToSave.setWindowState(Qt::WindowStates(expectedWindowState)); QTest::qWait(500); // stabilize QByteArray geometryToSave = widgetToSave.saveGeometry(); // Code for saving a new geometry.dat file. f.setFileName(fileName.mid(1)); QVERIFY(f.open(QIODevice::WriteOnly)); // did you forget to 'p4 edit *.dat'? :) f.write(geometryToSave); f.close(); } #endif } void tst_QWidget::widgetAt() { Q_CHECK_PAINTEVENTS QWidget *w1 = new QWidget(0, Qt::X11BypassWindowManagerHint); w1->setGeometry(0,0,150,150); w1->setObjectName("w1"); QWidget *w2 = new QWidget(0, Qt::X11BypassWindowManagerHint | Qt::FramelessWindowHint); w2->setGeometry(50,50,100,100); w2->setObjectName("w2"); w1->show(); QTest::qWaitForWindowShown(w1); qApp->processEvents(); QWidget *wr; QTRY_VERIFY((wr = QApplication::widgetAt(100, 100))); QCOMPARE(wr->objectName(), QString("w1")); w2->show(); QTest::qWaitForWindowShown(w2); qApp->processEvents(); qApp->processEvents(); qApp->processEvents(); QTRY_VERIFY((wr = QApplication::widgetAt(100, 100))); QCOMPARE(wr->objectName(), QString("w2")); w2->lower(); qApp->processEvents(); QTRY_VERIFY((wr = QApplication::widgetAt(100, 100))); const bool match = (wr->objectName() == QString("w1")); w2->raise(); QVERIFY(match); qApp->processEvents(); QTRY_VERIFY((wr = QApplication::widgetAt(100, 100))); QCOMPARE(wr->objectName(), QString("w2")); QWidget *w3 = new QWidget(w2); w3->setGeometry(10,10,50,50); w3->setObjectName("w3"); w3->show(); qApp->processEvents(); QTRY_VERIFY((wr = QApplication::widgetAt(100,100))); QCOMPARE(wr->objectName(), QString("w3")); w3->setAttribute(Qt::WA_TransparentForMouseEvents); qApp->processEvents(); QTRY_VERIFY((wr = QApplication::widgetAt(100, 100))); QCOMPARE(wr->objectName(), QString("w2")); QRegion rgn = QRect(QPoint(0,0), w2->size()); QPoint point = w2->mapFromGlobal(QPoint(100,100)); rgn -= QRect(point, QSize(1,1)); w2->setMask(rgn); qApp->processEvents(); QTest::qWait(10); #if defined(Q_OS_WINCE) QEXPECT_FAIL("", "Windows CE does only support rectangular regions", Continue); //See also task 147191 #endif #if defined(Q_OS_SYMBIAN) QEXPECT_FAIL("", "Symbian/S60 does only support rectangular regions", Continue); //See also task 147191 #endif #if defined(Q_WS_QPA) QEXPECT_FAIL("", "Window mask not implemented on Lighthouse", Continue); #endif QTRY_COMPARE(QApplication::widgetAt(100,100)->objectName(), w1->objectName()); QTRY_COMPARE(QApplication::widgetAt(101,101)->objectName(), w2->objectName()); QBitmap bitmap(w2->size()); QPainter p(&bitmap); p.fillRect(bitmap.rect(), Qt::color1); p.setPen(Qt::color0); p.drawPoint(w2->mapFromGlobal(QPoint(100,100))); p.end(); w2->setMask(bitmap); qApp->processEvents(); QTest::qWait(10); #if defined(Q_OS_WINCE) QEXPECT_FAIL("", "Windows CE does only support rectangular regions", Continue); //See also task 147191 #endif #if defined(Q_OS_SYMBIAN) QEXPECT_FAIL("", "Symbian/S60 does only support rectangular regions", Continue); //See also task 147191 #endif #if defined(Q_WS_QPA) QEXPECT_FAIL("", "Window mask not implemented on Lighthouse", Continue); #endif QTRY_VERIFY(QApplication::widgetAt(100,100) == w1); QTRY_VERIFY(QApplication::widgetAt(101,101) == w2); delete w2; delete w1; } #if defined(Q_WS_X11) bool getProperty(Display *display, Window target, Atom type, Atom property, unsigned char** data, unsigned long* count) { Atom atom_return; int size; unsigned long nitems, bytes_left; int ret = XGetWindowProperty(display, target, property, 0l, 1l, false, type, &atom_return, &size, &nitems, &bytes_left, data); if (ret != Success || nitems < 1) return false; if (bytes_left != 0) { XFree(*data); unsigned long remain = ((size / 8) * nitems) + bytes_left; ret = XGetWindowProperty(display, target, property, 0l, remain, false, type, &atom_return, &size, &nitems, &bytes_left, data); if (ret != Success) return false; } *count = nitems; return true; } QString textPropertyToString(Display *display, XTextProperty& text_prop) { QString ret; if (text_prop.value && text_prop.nitems > 0) { if (text_prop.encoding == XA_STRING) { ret = reinterpret_cast<char *>(text_prop.value); } else { text_prop.nitems = strlen(reinterpret_cast<char *>(text_prop.value)); char **list; int num; if (XmbTextPropertyToTextList(display, &text_prop, &list, &num) == Success && num > 0 && *list) { ret = QString::fromLocal8Bit(*list); XFreeStringList(list); } } } return ret; } #endif #if defined(Q_WS_S60) // Returns the application's status pane control, if not present returns NULL. static CCoeControl* GetStatusPaneControl( TInt aPaneId ) { const TUid paneUid = { aPaneId }; CEikStatusPane* statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); if (statusPane && statusPane->PaneCapabilities(paneUid).IsPresent()){ CCoeControl* control = NULL; // ControlL shouldn't leave because the pane is present TRAPD(err, control = statusPane->ControlL(paneUid)); return err != KErrNone ? NULL : control; } return NULL; } // Returns the application's title pane, if not present returns NULL. static CAknTitlePane* TitlePane() { return static_cast<CAknTitlePane*>(GetStatusPaneControl(EEikStatusPaneUidTitle)); } // Returns the application's title pane, if not present returns NULL. static CAknContextPane* ContextPane() { return static_cast<CAknContextPane*>(GetStatusPaneControl(EEikStatusPaneUidContext)); } #endif static QString visibleWindowTitle(QWidget *window, Qt::WindowState state = Qt::WindowNoState) { QString vTitle; #ifdef Q_WS_WIN Q_UNUSED(state); const size_t maxTitleLength = 256; wchar_t title[maxTitleLength]; GetWindowText(window->winId(), title, maxTitleLength); vTitle = QString::fromWCharArray(title); #elif defined(Q_WS_X11) /* We can't check what the window manager displays, but we can check what we tell the window manager to display. This will have to do. */ Atom UTF8_STRING = XInternAtom(window->x11Info().display(), "UTF8_STRING", false); Atom _NET_WM_NAME = XInternAtom(window->x11Info().display(), "_NET_WM_NAME", false); Atom _NET_WM_ICON_NAME = XInternAtom(window->x11Info().display(), "_NET_WM_ICON_NAME", false); uchar *data = 0; ulong length = 0; if (state == Qt::WindowMinimized) { if (getProperty(window->x11Info().display(), window->winId(), UTF8_STRING, _NET_WM_ICON_NAME, &data, &length)) { vTitle = QString::fromUtf8((char *) data, length); XFree(data); } else { XTextProperty text_prop; if (XGetWMIconName(window->x11Info().display(), window->winId(), &text_prop)) { vTitle = textPropertyToString(window->x11Info().display(), text_prop); XFree((char *) text_prop.value); } } } else { if (getProperty(window->x11Info().display(), window->winId(), UTF8_STRING, _NET_WM_NAME, &data, &length)) { vTitle = QString::fromUtf8((char *) data, length); XFree(data); } else { XTextProperty text_prop; if (XGetWMName(window->x11Info().display(), window->winId(), &text_prop)) { vTitle = textPropertyToString(window->x11Info().display(), text_prop); XFree((char *) text_prop.value); } } } #elif defined(Q_WS_MAC) vTitle = nativeWindowTitle(window, state); #elif defined(Q_WS_QWS) if (qwsServer) { const QWSWindow *win = 0; const QList<QWSWindow*> windows = qwsServer->clientWindows(); for (int i = 0; i < windows.count(); ++i) { const QWSWindow* w = windows.at(i); if (w->winId() == window->winId()) { win = w; break; } } if (win) vTitle = win->caption(); } #elif defined (Q_WS_S60) CAknTitlePane* titlePane = TitlePane(); if(titlePane) { const TDesC* nTitle = titlePane->Text(); vTitle = QString::fromUtf16(nTitle->Ptr(), nTitle->Length()); } #endif return vTitle; } void tst_QWidget::windowTitle() { QWidget widget(0); widget.setWindowTitle("Application Name"); widget.winId(); // Make sure the window is created... QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowTitle("Application Name *"); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name *")); widget.setWindowTitle("Application Name[*]"); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowTitle("Application Name[*][*]"); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*]")); widget.setWindowTitle("Application Name[*][*][*]"); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*]")); widget.setWindowTitle("Application Name[*][*][*][*]"); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*][*]")); } void tst_QWidget::windowIconText() { #ifdef Q_OS_SYMBIAN QSKIP("Symbian/S60 windows don't have window icon text", SkipAll); #endif QWidget widget(0); widget.setWindowTitle("Application Name"); widget.setWindowIconText("Application Minimized"); widget.showNormal(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.showMinimized(); #if defined(Q_WS_QWS) || defined(Q_OS_WINCE) QEXPECT_FAIL(0, "Qt/Embedded/WinCE does not implement showMinimized()", Continue); //See task 147193 for WinCE #endif QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget, Qt::WindowMinimized), QString("Application Minimized")); widget.setWindowTitle("Application Name[*]"); widget.setWindowIconText("Application Minimized[*]"); widget.showNormal(); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.showMinimized(); #if defined (Q_WS_QWS) || defined(Q_OS_WINCE) QEXPECT_FAIL(0, "Qt/Embedded/WinCE does not implement showMinimized()", Continue); //See task 147193 for WinCE #endif QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget, Qt::WindowMinimized), QString("Application Minimized")); widget.setWindowModified(true); widget.showNormal(); QApplication::instance()->processEvents(); if (widget.style()->styleHint(QStyle::SH_TitleBar_ModifyNotification, 0, &widget)) QCOMPARE(visibleWindowTitle(&widget), QString("Application Name*")); else QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.showMinimized(); #if defined (Q_WS_QWS) || defined(Q_OS_WINCE) QEXPECT_FAIL(0, "Qt/Embedded/WinCE does not implement showMinimized()", Continue); //See task 147193 for WinCE #endif QApplication::instance()->processEvents(); #ifdef Q_WS_MAC QCOMPARE(visibleWindowTitle(&widget, Qt::WindowMinimized), QString("Application Minimized")); QVERIFY(nativeWindowModified(&widget)); #else QCOMPARE(visibleWindowTitle(&widget, Qt::WindowMinimized), QString("Application Minimized*")); #endif } void tst_QWidget::windowModified() { QWidget widget(0); widget.show(); QTest::qWaitForWindowShown(&widget); #ifndef Q_WS_MAC QTest::ignoreMessage(QtWarningMsg, "QWidget::setWindowModified: The window title does not contain a '[*]' placeholder"); #endif widget.setWindowTitle("Application Name"); QTest::qWait(10); QTRY_COMPARE(visibleWindowTitle(&widget), QString("Application Name")); #ifdef Q_WS_MAC widget.setWindowModified(true); QVERIFY(nativeWindowModified(&widget)); #else widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowTitle("Application Name[*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); if (widget.style()->styleHint(QStyle::SH_TitleBar_ModifyNotification, 0, &widget)) QCOMPARE(visibleWindowTitle(&widget), QString("Application Name*")); else QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowTitle("Application[*] Name[*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application* Name*")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name")); widget.setWindowTitle("Application Name[*][*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*]")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*]")); widget.setWindowTitle("Application[*][*] Name[*][*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application[*] Name[*]")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application[*] Name[*]")); widget.setWindowTitle("Application[*] Name[*][*][*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application* Name[*]*")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application Name[*]")); widget.setWindowTitle("Application[*][*][*] Name[*][*][*]"); widget.setWindowModified(true); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application[*]* Name[*]*")); widget.setWindowModified(false); QApplication::instance()->processEvents(); QCOMPARE(visibleWindowTitle(&widget), QString("Application[*] Name[*]")); #endif } void tst_QWidget::task110173() { QWidget w; QPushButton *pb1 = new QPushButton("click", &w); pb1->setFocusPolicy(Qt::ClickFocus); pb1->move(100, 100); QPushButton *pb2 = new QPushButton("push", &w); pb2->setFocusPolicy(Qt::ClickFocus); pb2->move(300, 300); QTest::keyClick( &w, Qt::Key_Tab ); w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(200); } class Widget : public QWidget { public: Widget() : deleteThis(false) { setFocusPolicy(Qt::StrongFocus); } void actionEvent(QActionEvent *) { if (deleteThis) delete this; } void changeEvent(QEvent *) { if (deleteThis) delete this; } void closeEvent(QCloseEvent *) { if (deleteThis) delete this; } void hideEvent(QHideEvent *) { if (deleteThis) delete this; } void focusOutEvent(QFocusEvent *) { if (deleteThis) delete this; } void keyPressEvent(QKeyEvent *) { if (deleteThis) delete this; } void keyReleaseEvent(QKeyEvent *) { if (deleteThis) delete this; } void mouseDoubleClickEvent(QMouseEvent *) { if (deleteThis) delete this; } void mousePressEvent(QMouseEvent *) { if (deleteThis) delete this; } void mouseReleaseEvent(QMouseEvent *) { if (deleteThis) delete this; } void mouseMoveEvent(QMouseEvent *) { if (deleteThis) delete this; } bool deleteThis; }; void tst_QWidget::testDeletionInEventHandlers() { // closeEvent QPointer<Widget> w = new Widget; w->deleteThis = true; w->close(); QVERIFY(w == 0); delete w; // focusOut (crashes) //w = new Widget; //w->show(); //w->setFocus(); //QVERIFY(qApp->focusWidget() == w); //w->deleteThis = true; //w->clearFocus(); //QVERIFY(w == 0); // key press w = new Widget; w->show(); w->deleteThis = true; QTest::keyPress(w, Qt::Key_A); QVERIFY(w == 0); delete w; // key release w = new Widget; w->show(); w->deleteThis = true; QTest::keyRelease(w, Qt::Key_A); QVERIFY(w == 0); delete w; // mouse press w = new Widget; w->show(); w->deleteThis = true; QTest::mousePress(w, Qt::LeftButton); QVERIFY(w == 0); delete w; // mouse release w = new Widget; w->show(); w->deleteThis = true; QTest::mouseRelease(w, Qt::LeftButton); QVERIFY(w == 0); delete w; // mouse double click w = new Widget; w->show(); w->deleteThis = true; QTest::mouseDClick(w, Qt::LeftButton); QVERIFY(w == 0); delete w; // hide event (crashes) //w = new Widget; //w->show(); //w->deleteThis = true; //w->hide(); //QVERIFY(w == 0); // action event w = new Widget; w->deleteThis = true; w->addAction(new QAction(w)); QVERIFY(w == 0); delete w; // change event w = new Widget; w->show(); w->deleteThis = true; w->setMouseTracking(true); QVERIFY(w == 0); delete w; w = new Widget; w->setMouseTracking(true); w->show(); w->deleteThis = true; QMouseEvent me(QEvent::MouseMove, QPoint(0, 0), Qt::NoButton, Qt::NoButton, Qt::NoModifier); QApplication::sendEvent(w, &me); QVERIFY(w == 0); delete w; } #ifdef Q_WS_MAC /* Test that retaining and releasing the HIView returned by QWidget::winId() works even if the widget itself is deleted. */ void tst_QWidget::retainHIView() { // Single window { const WidgetViewPair window = createAndRetain(); delete window.first; QVERIFY(testAndRelease(window.second)); } // Child widget { const WidgetViewPair parent = createAndRetain(); const WidgetViewPair child = createAndRetain(parent.first); delete parent.first; QVERIFY(testAndRelease(parent.second)); QVERIFY(testAndRelease(child.second)); } // Multiple children { const WidgetViewPair parent = createAndRetain(); const WidgetViewPair child1 = createAndRetain(parent.first); const WidgetViewPair child2 = createAndRetain(parent.first); delete parent.first; QVERIFY(testAndRelease(parent.second)); QVERIFY(testAndRelease(child1.second)); QVERIFY(testAndRelease(child2.second)); } // Grandchild widget { const WidgetViewPair parent = createAndRetain(); const WidgetViewPair child = createAndRetain(parent.first); const WidgetViewPair grandchild = createAndRetain(child.first); delete parent.first; QVERIFY(testAndRelease(parent.second)); QVERIFY(testAndRelease(child.second)); QVERIFY(testAndRelease(grandchild.second)); } // Reparent child widget { const WidgetViewPair parent1 = createAndRetain(); const WidgetViewPair parent2 = createAndRetain(); const WidgetViewPair child = createAndRetain(parent1.first); child.first->setParent(parent2.first); delete parent1.first; QVERIFY(testAndRelease(parent1.second)); delete parent2.first; QVERIFY(testAndRelease(parent2.second)); QVERIFY(testAndRelease(child.second)); } // Reparent window { const WidgetViewPair window1 = createAndRetain(); const WidgetViewPair window2 = createAndRetain(); const WidgetViewPair child1 = createAndRetain(window1.first); const WidgetViewPair child2 = createAndRetain(window2.first); window2.first->setParent(window1.first); delete window2.first; QVERIFY(testAndRelease(window2.second)); QVERIFY(testAndRelease(child2.second)); delete window1.first; QVERIFY(testAndRelease(window1.second)); QVERIFY(testAndRelease(child1.second)); } // Delete child widget { const WidgetViewPair parent = createAndRetain(); const WidgetViewPair child = createAndRetain(parent.first); delete child.first; QVERIFY(testAndRelease(child.second)); delete parent.first; QVERIFY(testAndRelease(parent.second)); } } void tst_QWidget::sheetOpacity() { QWidget tmpWindow; QWidget sheet(&tmpWindow, Qt::Sheet); tmpWindow.show(); sheet.show(); QCOMPARE(int(sheet.windowOpacity() * 255), 242); // 95% sheet.setParent(0, Qt::Dialog); QCOMPARE(int(sheet.windowOpacity() * 255), 255); } class MaskedPainter : public QWidget { public: QRect mask; MaskedPainter() : mask(20, 20, 50, 50) { setMask(mask); } void paintEvent(QPaintEvent *) { QPainter p(this); p.fillRect(mask, QColor(Qt::red)); } }; /* Verifies that the entire area inside the mask is painted red. */ bool verifyWidgetMask(QWidget *widget, QRect mask) { const QImage image = QPixmap::grabWindow(widget->winId()).toImage(); const QImage masked = image.copy(mask); QImage red(masked); red.fill(QColor(Qt::red).rgb()); return (masked == red); } void tst_QWidget::setMask() { testWidget->hide(); // get this out of the way. { MaskedPainter w; w.resize(200, 200); w.show(); QTest::qWait(100); QVERIFY(verifyWidgetMask(&w, w.mask)); } { MaskedPainter w; w.resize(200, 200); w.setWindowFlags(w.windowFlags() | Qt::FramelessWindowHint); w.show(); QTest::qWait(100); QRect mask = w.mask; QVERIFY(verifyWidgetMask(&w, mask)); } } #endif class StaticWidget : public QWidget { Q_OBJECT public: bool partial; bool gotPaintEvent; QRegion paintedRegion; StaticWidget(QWidget *parent = 0) :QWidget(parent) { setAttribute(Qt::WA_StaticContents); setAttribute(Qt::WA_OpaquePaintEvent); setPalette(Qt::red); // Make sure we have an opaque palette. setAutoFillBackground(true); gotPaintEvent = false; } void paintEvent(QPaintEvent *e) { paintedRegion += e->region(); gotPaintEvent = true; // qDebug() << "paint" << e->region(); // Look for a full update, set partial to false if found. foreach(QRect r, e->region().rects()) { partial = (r != rect()); if (partial == false) break; } } }; /* Test that widget resizes and moves can be done with minimal repaints when WA_StaticContents and WA_OpaquePaintEvent is set. Test is mac-only for now. */ void tst_QWidget::optimizedResizeMove() { QWidget parent; parent.resize(400, 400); StaticWidget staticWidget(&parent); staticWidget.gotPaintEvent = false; staticWidget.move(150, 150); staticWidget.resize(150, 150); parent.show(); QTest::qWaitForWindowShown(&parent); QTest::qWait(20); QTRY_COMPARE(staticWidget.gotPaintEvent, true); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(10, 10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(-10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(-10, 10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.gotPaintEvent = false; staticWidget.resize(staticWidget.size() + QSize(10, 10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, true); QCOMPARE(staticWidget.partial, true); staticWidget.gotPaintEvent = false; staticWidget.resize(staticWidget.size() + QSize(-10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.gotPaintEvent = false; staticWidget.resize(staticWidget.size() + QSize(10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, true); QCOMPARE(staticWidget.partial, true); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(10, 10)); staticWidget.resize(staticWidget.size() + QSize(-10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(10, 10)); staticWidget.resize(staticWidget.size() + QSize(10, 10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, true); QCOMPARE(staticWidget.partial, true); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(-10, -10)); staticWidget.resize(staticWidget.size() + QSize(-10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.setAttribute(Qt::WA_StaticContents, false); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(-10, -10)); staticWidget.resize(staticWidget.size() + QSize(-10, -10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, true); QCOMPARE(staticWidget.partial, false); staticWidget.setAttribute(Qt::WA_StaticContents, true); staticWidget.setAttribute(Qt::WA_StaticContents, false); staticWidget.gotPaintEvent = false; staticWidget.move(staticWidget.pos() + QPoint(10, 10)); QTest::qWait(20); QCOMPARE(staticWidget.gotPaintEvent, false); staticWidget.setAttribute(Qt::WA_StaticContents, true); } void tst_QWidget::optimizedResize_topLevel() { #if defined(Q_WS_MAC) || defined(Q_WS_QWS) QSKIP("We do not yet have static contents support for *top-levels* on this platform", SkipAll); #endif StaticWidget topLevel; topLevel.gotPaintEvent = false; topLevel.show(); QTest::qWaitForWindowShown(&topLevel); QTest::qWait(10); QTRY_COMPARE(topLevel.gotPaintEvent, true); topLevel.gotPaintEvent = false; topLevel.partial = false; topLevel.paintedRegion = QRegion(); #ifndef Q_WS_WIN topLevel.resize(topLevel.size() + QSize(10, 10)); #else // Static contents does not work when programmatically resizing // top-levels with QWidget::resize. We do some funky stuff in // setGeometry_sys. However, resizing it with the mouse or with // a native function call works (it basically has to go through // WM_RESIZE in QApplication). This is a corner case, though. // See task 243708 const QRect frame = topLevel.frameGeometry(); MoveWindow(topLevel.winId(), frame.x(), frame.y(), frame.width() + 10, frame.height() + 10, true); #endif QTest::qWait(100); // Expected update region: New rect - old rect. QRegion expectedUpdateRegion(topLevel.rect()); expectedUpdateRegion -= QRect(QPoint(), topLevel.size() - QSize(10, 10)); QTRY_COMPARE(topLevel.gotPaintEvent, true); QCOMPARE(topLevel.partial, true); QCOMPARE(topLevel.paintedRegion, expectedUpdateRegion); } class SiblingDeleter : public QWidget { public: inline SiblingDeleter(QWidget *sibling, QWidget *parent) : QWidget(parent), sibling(sibling) {} inline virtual ~SiblingDeleter() { delete sibling; } private: QPointer<QWidget> sibling; }; void tst_QWidget::childDeletesItsSibling() { QWidget *commonParent = new QWidget(0); QPointer<QWidget> child = new QWidget(0); QPointer<QWidget> siblingDeleter = new SiblingDeleter(child, commonParent); child->setParent(commonParent); delete commonParent; // don't crash QVERIFY(!child); QVERIFY(!siblingDeleter); } #ifdef Q_WS_QWS # define SET_SAFE_SIZE(w) \ do { \ QSize safeSize(qt_screen->width() - 250, qt_screen->height() - 250); \ if (!safeSize.isValid()) \ QSKIP("Screen size too small", SkipAll); \ if (defaultSize.width() > safeSize.width() || defaultSize.height() > safeSize.height()) { \ defaultSize = safeSize; \ w.resize(defaultSize); \ w.setAttribute(Qt::WA_Resized, false); \ } \ } while (false) #else # define SET_SAFE_SIZE(w) #endif void tst_QWidget::setMinimumSize() { QWidget w; QSize defaultSize = w.size(); SET_SAFE_SIZE(w); w.setMinimumSize(defaultSize + QSize(100, 100)); QCOMPARE(w.size(), defaultSize + QSize(100, 100)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setMinimumSize(defaultSize + QSize(50, 50)); QCOMPARE(w.size(), defaultSize + QSize(100, 100)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setMinimumSize(defaultSize + QSize(200, 200)); QCOMPARE(w.size(), defaultSize + QSize(200, 200)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); #ifdef Q_OS_WINCE QSKIP("Setting a minimum size larger than the desktop does not work", SkipAll); #endif QSize nonDefaultSize = defaultSize + QSize(5,5); w.setMinimumSize(nonDefaultSize); w.show(); QTest::qWait(50); QVERIFY(w.height() >= nonDefaultSize.height()); QVERIFY(w.width() >= nonDefaultSize.width()); } void tst_QWidget::setMaximumSize() { QWidget w; QSize defaultSize = w.size(); SET_SAFE_SIZE(w); w.setMinimumSize(defaultSize + QSize(100, 100)); QCOMPARE(w.size(), defaultSize + QSize(100, 100)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setMinimumSize(defaultSize); w.setMaximumSize(defaultSize + QSize(200, 200)); QCOMPARE(w.size(), defaultSize + QSize(100, 100)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setMaximumSize(defaultSize + QSize(50, 50)); QCOMPARE(w.size(), defaultSize + QSize(50, 50)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); #if 0 //we don't enforce maximum size on show, apparently QSize nonDefaultSize = defaultSize - QSize(5,5); w.setMaximumSize(nonDefaultSize); w.show(); QTest::qWait(50); qDebug() << nonDefaultSize << w.size(); QVERIFY(w.height() <= nonDefaultSize.height()); QVERIFY(w.width() <= nonDefaultSize.width()); #endif } void tst_QWidget::setFixedSize() { QWidget w; QSize defaultSize = w.size(); SET_SAFE_SIZE(w); w.setFixedSize(defaultSize + QSize(100, 100)); QCOMPARE(w.size(), defaultSize + QSize(100, 100)); QVERIFY(w.testAttribute(Qt::WA_Resized)); w.setFixedSize(defaultSize + QSize(200, 200)); QCOMPARE(w.minimumSize(), defaultSize + QSize(200,200)); QCOMPARE(w.maximumSize(), defaultSize + QSize(200,200)); QCOMPARE(w.size(), defaultSize + QSize(200, 200)); QVERIFY(w.testAttribute(Qt::WA_Resized)); w.setFixedSize(defaultSize + QSize(50, 50)); QCOMPARE(w.size(), defaultSize + QSize(50, 50)); QVERIFY(w.testAttribute(Qt::WA_Resized)); w.setAttribute(Qt::WA_Resized, false); w.setFixedSize(defaultSize + QSize(50, 50)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setFixedSize(defaultSize + QSize(150, 150)); w.show(); QTest::qWait(50); QVERIFY(w.size() == defaultSize + QSize(150,150)); } void tst_QWidget::ensureCreated() { { QWidget widget; WId widgetWinId = widget.winId(); Q_UNUSED(widgetWinId); QVERIFY(widget.testAttribute(Qt::WA_WState_Created)); } { QWidget window; QDialog dialog(&window); dialog.setWindowModality(Qt::NonModal); WId dialogWinId = dialog.winId(); Q_UNUSED(dialogWinId); QVERIFY(dialog.testAttribute(Qt::WA_WState_Created)); QVERIFY(window.testAttribute(Qt::WA_WState_Created)); } { QWidget window; QDialog dialog(&window); dialog.setWindowModality(Qt::WindowModal); WId dialogWinId = dialog.winId(); Q_UNUSED(dialogWinId); QVERIFY(dialog.testAttribute(Qt::WA_WState_Created)); QVERIFY(window.testAttribute(Qt::WA_WState_Created)); } { QWidget window; QDialog dialog(&window); dialog.setWindowModality(Qt::ApplicationModal); WId dialogWinId = dialog.winId(); Q_UNUSED(dialogWinId); QVERIFY(dialog.testAttribute(Qt::WA_WState_Created)); QVERIFY(window.testAttribute(Qt::WA_WState_Created)); } } class WinIdChangeWidget : public QWidget { public: WinIdChangeWidget(QWidget *p = 0) : QWidget(p) { } protected: bool event(QEvent *e) { if (e->type() == QEvent::WinIdChange) { m_winIdList.append(internalWinId()); return true; } return QWidget::event(e); } public: QList<WId> m_winIdList; int winIdChangeEventCount() const { return m_winIdList.count(); } }; void tst_QWidget::winIdChangeEvent() { { // Transforming an alien widget into a native widget WinIdChangeWidget widget; const WId winIdBefore = widget.internalWinId(); const WId winIdAfter = widget.winId(); QVERIFY(winIdBefore != winIdAfter); QCOMPARE(widget.winIdChangeEventCount(), 1); } { // Changing parent of a native widget // Should cause winId of child to change, on all platforms QWidget parent1, parent2; WinIdChangeWidget child(&parent1); const WId winIdBefore = child.winId(); QCOMPARE(child.winIdChangeEventCount(), 1); child.setParent(&parent2); const WId winIdAfter = child.internalWinId(); QVERIFY(winIdBefore != winIdAfter); QCOMPARE(child.winIdChangeEventCount(), 3); // winId is set to zero during reparenting QVERIFY(0 == child.m_winIdList[1]); } { // Changing grandparent of a native widget // Should cause winId of grandchild to change only on Symbian QWidget grandparent1, grandparent2; QWidget parent(&grandparent1); WinIdChangeWidget child(&parent); const WId winIdBefore = child.winId(); QCOMPARE(child.winIdChangeEventCount(), 1); parent.setParent(&grandparent2); const WId winIdAfter = child.internalWinId(); #ifdef Q_OS_SYMBIAN QVERIFY(winIdBefore != winIdAfter); QVERIFY(winIdAfter != 0); QCOMPARE(child.winIdChangeEventCount(), 2); #else QCOMPARE(winIdBefore, winIdAfter); QCOMPARE(child.winIdChangeEventCount(), 1); #endif } { // Changing parent of an alien widget QWidget parent1, parent2; WinIdChangeWidget child(&parent1); const WId winIdBefore = child.internalWinId(); child.setParent(&parent2); const WId winIdAfter = child.internalWinId(); QCOMPARE(winIdBefore, winIdAfter); QCOMPARE(child.winIdChangeEventCount(), 0); } { // Making native child widget into a top-level window QWidget parent; WinIdChangeWidget child(&parent); child.winId(); const WId winIdBefore = child.internalWinId(); QCOMPARE(child.winIdChangeEventCount(), 1); const Qt::WindowFlags flags = child.windowFlags(); child.setWindowFlags(flags | Qt::Window); const WId winIdAfter = child.internalWinId(); QVERIFY(winIdBefore != winIdAfter); QCOMPARE(child.winIdChangeEventCount(), 3); // winId is set to zero during reparenting QVERIFY(0 == child.m_winIdList[1]); } } #ifdef Q_OS_SYMBIAN void tst_QWidget::reparentCausesChildWinIdChange() { QWidget *parent = new QWidget; QWidget *w1 = new QWidget; QWidget *w2 = new QWidget; QWidget *w3 = new QWidget; w1->setParent(parent); w2->setParent(w1); w3->setParent(w2); WId winId1 = w1->winId(); WId winId2 = w2->winId(); WId winId3 = w3->winId(); // reparenting causes winIds of the widget being reparented, and all of its children, to change w1->setParent(0); QVERIFY(w1->winId() != winId1); winId1 = w1->winId(); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w1->setParent(parent); QVERIFY(w1->winId() != winId1); winId1 = w1->winId(); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w2->setParent(0); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w2->setParent(parent); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w2->setParent(w1); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w3->setParent(0); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w3->setParent(w1); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w3->setParent(w2); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); delete parent; } #else void tst_QWidget::persistentWinId() { QWidget *parent = new QWidget; QWidget *w1 = new QWidget; QWidget *w2 = new QWidget; QWidget *w3 = new QWidget; w1->setParent(parent); w2->setParent(w1); w3->setParent(w2); WId winId1 = w1->winId(); WId winId2 = w2->winId(); WId winId3 = w3->winId(); // reparenting should change the winId of the widget being reparented, but not of its children w1->setParent(0); QVERIFY(w1->winId() != winId1); winId1 = w1->winId(); QCOMPARE(w2->winId(), winId2); QCOMPARE(w3->winId(), winId3); w1->setParent(parent); QVERIFY(w1->winId() != winId1); winId1 = w1->winId(); QCOMPARE(w2->winId(), winId2); QCOMPARE(w3->winId(), winId3); w2->setParent(0); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QCOMPARE(w3->winId(), winId3); w2->setParent(parent); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QCOMPARE(w3->winId(), winId3); w2->setParent(w1); QVERIFY(w2->winId() != winId2); winId2 = w2->winId(); QCOMPARE(w3->winId(), winId3); w3->setParent(0); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w3->setParent(w1); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); w3->setParent(w2); QVERIFY(w3->winId() != winId3); winId3 = w3->winId(); delete parent; } #endif // Q_OS_SYMBIAN void tst_QWidget::showNativeChild() { QWidget topLevel; topLevel.setGeometry(0, 0, 100, 100); QWidget child(&topLevel); child.winId(); topLevel.show(); QTest::qWaitForWindowShown(&topLevel); } class ShowHideEventWidget : public QWidget { public: int numberOfShowEvents, numberOfHideEvents; ShowHideEventWidget(QWidget *parent = 0) : QWidget(parent), numberOfShowEvents(0), numberOfHideEvents(0) { } void create() { QWidget::create(); } void showEvent(QShowEvent *) { ++numberOfShowEvents; } void hideEvent(QHideEvent *) { ++numberOfHideEvents; } }; void tst_QWidget::showHideEvent_data() { QTest::addColumn<bool>("show"); QTest::addColumn<bool>("hide"); QTest::addColumn<bool>("create"); QTest::addColumn<int>("expectedShowEvents"); QTest::addColumn<int>("expectedHideEvents"); QTest::newRow("window: only show") << true << false << false << 1 << 0; QTest::newRow("window: show/hide") << true << true << false << 1 << 1; QTest::newRow("window: show/hide/create") << true << true << true << 1 << 1; QTest::newRow("window: hide/create") << false << true << true << 0 << 0; QTest::newRow("window: only hide") << false << true << false << 0 << 0; QTest::newRow("window: nothing") << false << false << false << 0 << 0; } void tst_QWidget::showHideEvent() { QFETCH(bool, show); QFETCH(bool, hide); QFETCH(bool, create); QFETCH(int, expectedShowEvents); QFETCH(int, expectedHideEvents); ShowHideEventWidget widget; if (show) widget.show(); if (hide) widget.hide(); if (create && !widget.testAttribute(Qt::WA_WState_Created)) widget.create(); QCOMPARE(widget.numberOfShowEvents, expectedShowEvents); QCOMPARE(widget.numberOfHideEvents, expectedHideEvents); } void tst_QWidget::update() { QTest::qWait(10); // Wait for the initStuff to do it's stuff. Q_CHECK_PAINTEVENTS UpdateWidget w; w.setGeometry(50, 50, 100, 100); w.show(); QTest::qWaitForWindowShown(&w); QApplication::processEvents(); QApplication::processEvents(); QTRY_COMPARE(w.numPaintEvents, 1); QCOMPARE(w.visibleRegion(), QRegion(w.rect())); QCOMPARE(w.paintedRegion, w.visibleRegion()); w.reset(); UpdateWidget child(&w); child.setGeometry(10, 10, 80, 80); child.show(); QPoint childOffset = child.mapToParent(QPoint()); // widgets are transparent by default, so both should get repaints { QApplication::processEvents(); QApplication::processEvents(); QCOMPARE(child.numPaintEvents, 1); QCOMPARE(child.visibleRegion(), QRegion(child.rect())); QCOMPARE(child.paintedRegion, child.visibleRegion()); QCOMPARE(w.numPaintEvents, 1); QCOMPARE(w.visibleRegion(), QRegion(w.rect())); QCOMPARE(w.paintedRegion, child.visibleRegion().translated(childOffset)); w.reset(); child.reset(); w.update(); QApplication::processEvents(); QApplication::processEvents(); QCOMPARE(child.numPaintEvents, 1); QCOMPARE(child.visibleRegion(), QRegion(child.rect())); QCOMPARE(child.paintedRegion, child.visibleRegion()); QCOMPARE(w.numPaintEvents, 1); QCOMPARE(w.visibleRegion(), QRegion(w.rect())); QCOMPARE(w.paintedRegion, w.visibleRegion()); } QPalette opaquePalette = child.palette(); opaquePalette.setColor(child.backgroundRole(), QColor(Qt::red)); // setting an opaque background on the child should prevent paint-events // for the parent in the child area { child.setPalette(opaquePalette); child.setAutoFillBackground(true); QApplication::processEvents(); w.reset(); child.reset(); w.update(); QApplication::processEvents(); QApplication::processEvents(); QCOMPARE(w.numPaintEvents, 1); QRegion expectedVisible = QRegion(w.rect()) - child.visibleRegion().translated(childOffset); QCOMPARE(w.visibleRegion(), expectedVisible); QCOMPARE(w.paintedRegion, expectedVisible); #ifdef QT_MAC_USE_COCOA QEXPECT_FAIL(0, "Cocoa compositor says to paint this.", Continue); #endif QCOMPARE(child.numPaintEvents, 0); w.reset(); child.reset(); child.update(); QApplication::processEvents(); QApplication::processEvents(); QCOMPARE(w.numPaintEvents, 0); QCOMPARE(child.numPaintEvents, 1); QCOMPARE(child.paintedRegion, child.visibleRegion()); w.reset(); child.reset(); } // overlapping sibling UpdateWidget sibling(&w); child.setGeometry(10, 10, 20, 20); sibling.setGeometry(15, 15, 20, 20); sibling.show(); QApplication::processEvents(); w.reset(); child.reset(); sibling.reset(); const QPoint siblingOffset = sibling.mapToParent(QPoint()); sibling.update(); QApplication::processEvents(); QApplication::processEvents(); // child is opaque, sibling transparent { QCOMPARE(sibling.numPaintEvents, 1); QCOMPARE(sibling.paintedRegion, sibling.visibleRegion()); QCOMPARE(child.numPaintEvents, 1); QCOMPARE(child.paintedRegion.translated(childOffset), child.visibleRegion().translated(childOffset) & sibling.visibleRegion().translated(siblingOffset)); QCOMPARE(w.numPaintEvents, 1); QCOMPARE(w.paintedRegion, w.visibleRegion() & sibling.visibleRegion().translated(siblingOffset)); QCOMPARE(w.paintedRegion, (w.visibleRegion() - child.visibleRegion().translated(childOffset)) & sibling.visibleRegion().translated(siblingOffset)); } w.reset(); child.reset(); sibling.reset(); sibling.setPalette(opaquePalette); sibling.setAutoFillBackground(true); sibling.update(); QApplication::processEvents(); QApplication::processEvents(); // child opaque, sibling opaque { QCOMPARE(sibling.numPaintEvents, 1); QCOMPARE(sibling.paintedRegion, sibling.visibleRegion()); #ifdef QT_MAC_USE_COCOA if (child.internalWinId()) // child is native QEXPECT_FAIL(0, "Cocoa compositor paints child and sibling", Continue); #endif QCOMPARE(child.numPaintEvents, 0); QCOMPARE(child.visibleRegion(), QRegion(child.rect()) - sibling.visibleRegion().translated(siblingOffset - childOffset)); QCOMPARE(w.numPaintEvents, 0); QCOMPARE(w.visibleRegion(), QRegion(w.rect()) - child.visibleRegion().translated(childOffset) - sibling.visibleRegion().translated(siblingOffset)); } } static inline bool isOpaque(QWidget *widget) { if (!widget) return false; return qt_widget_private(widget)->isOpaque; } void tst_QWidget::isOpaque() { #ifndef Q_WS_MAC QWidget w; QVERIFY(::isOpaque(&w)); QWidget child(&w); QVERIFY(!::isOpaque(&child)); child.setAutoFillBackground(true); QVERIFY(::isOpaque(&child)); QPalette palette; // background color palette = child.palette(); palette.setColor(child.backgroundRole(), QColor(255, 0, 0, 127)); child.setPalette(palette); QVERIFY(!::isOpaque(&child)); palette.setColor(child.backgroundRole(), QColor(255, 0, 0, 255)); child.setPalette(palette); QVERIFY(::isOpaque(&child)); palette.setColor(QPalette::Window, QColor(0, 0, 255, 127)); w.setPalette(palette); QVERIFY(!::isOpaque(&w)); child.setAutoFillBackground(false); QVERIFY(!::isOpaque(&child)); // Qt::WA_OpaquePaintEvent child.setAttribute(Qt::WA_OpaquePaintEvent); QVERIFY(::isOpaque(&child)); child.setAttribute(Qt::WA_OpaquePaintEvent, false); QVERIFY(!::isOpaque(&child)); // Qt::WA_NoSystemBackground child.setAttribute(Qt::WA_NoSystemBackground); QVERIFY(!::isOpaque(&child)); child.setAttribute(Qt::WA_NoSystemBackground, false); QVERIFY(!::isOpaque(&child)); palette.setColor(QPalette::Window, QColor(0, 0, 255, 255)); w.setPalette(palette); QVERIFY(::isOpaque(&w)); w.setAttribute(Qt::WA_NoSystemBackground); QVERIFY(!::isOpaque(&w)); w.setAttribute(Qt::WA_NoSystemBackground, false); QVERIFY(::isOpaque(&w)); { QPalette palette = QApplication::palette(); QPalette old = palette; palette.setColor(QPalette::Window, Qt::transparent); QApplication::setPalette(palette); QWidget widget; QVERIFY(!::isOpaque(&widget)); QApplication::setPalette(old); QCOMPARE(::isOpaque(&widget), old.color(QPalette::Window).alpha() == 255); } #endif } #ifndef Q_WS_MAC /* Test that scrolling of a widget invalidates the correct regions */ void tst_QWidget::scroll() { UpdateWidget updateWidget; updateWidget.resize(500, 500); updateWidget.reset(); updateWidget.show(); QTest::qWaitForWindowShown(&updateWidget); QTest::qWait(50); qApp->processEvents(); QTRY_VERIFY(updateWidget.numPaintEvents > 0); { updateWidget.reset(); updateWidget.scroll(10, 10); qApp->processEvents(); QRegion dirty(QRect(0, 0, 500, 10)); dirty += QRegion(QRect(0, 10, 10, 490)); QCOMPARE(updateWidget.paintedRegion, dirty); } { updateWidget.reset(); updateWidget.update(0, 0, 10, 10); updateWidget.scroll(0, 10); qApp->processEvents(); QRegion dirty(QRect(0, 0, 500, 10)); dirty += QRegion(QRect(0, 10, 10, 10)); QCOMPARE(updateWidget.paintedRegion, dirty); } { updateWidget.reset(); updateWidget.update(0, 0, 100, 100); updateWidget.scroll(10, 10, QRect(50, 50, 100, 100)); qApp->processEvents(); QRegion dirty(QRect(0, 0, 100, 50)); dirty += QRegion(QRect(0, 50, 150, 10)); dirty += QRegion(QRect(0, 60, 110, 40)); dirty += QRegion(QRect(50, 100, 60, 10)); dirty += QRegion(QRect(50, 110, 10, 40)); QCOMPARE(updateWidget.paintedRegion, dirty); } { updateWidget.reset(); updateWidget.update(0, 0, 100, 100); updateWidget.scroll(10, 10, QRect(100, 100, 100, 100)); qApp->processEvents(); QRegion dirty(QRect(0, 0, 100, 100)); dirty += QRegion(QRect(100, 100, 100, 10)); dirty += QRegion(QRect(100, 110, 10, 90)); QCOMPARE(updateWidget.paintedRegion, dirty); } } #endif class DestroyedSlotChecker : public QObject { Q_OBJECT public: bool wasQWidget; DestroyedSlotChecker() : wasQWidget(false) { } public slots: void destroyedSlot(QObject *object) { wasQWidget = (qobject_cast<QWidget *>(object) != 0 || object->isWidgetType()); } }; /* Test that qobject_cast<QWidget*> returns 0 in a slot connected to QObject::destroyed. */ void tst_QWidget::qobject_castInDestroyedSlot() { DestroyedSlotChecker checker; QWidget *widget = new QWidget(); QObject::connect(widget, SIGNAL(destroyed(QObject *)), &checker, SLOT(destroyedSlot(QObject *))); delete widget; QVERIFY(checker.wasQWidget == true); } Q_DECLARE_METATYPE(QList<QRect>) void tst_QWidget::setWindowGeometry_data() { QTest::addColumn<QList<QRect> >("rects"); QTest::addColumn<int>("windowFlags"); QList<QList<QRect> > rects; rects << (QList<QRect>() << QRect(100, 100, 200, 200) << QApplication::desktop()->availableGeometry().adjusted(100, 100, -100, -100) << QRect(130, 100, 0, 200) << QRect(100, 50, 200, 0) << QRect(130, 50, 0, 0)) << (QList<QRect>() << QApplication::desktop()->availableGeometry().adjusted(100, 100, -100, -100) << QRect(130, 100, 0, 200) << QRect(100, 50, 200, 0) << QRect(130, 50, 0, 0) << QRect(100, 100, 200, 200)) << (QList<QRect>() << QRect(130, 100, 0, 200) << QRect(100, 50, 200, 0) << QRect(130, 50, 0, 0) << QRect(100, 100, 200, 200) << QApplication::desktop()->availableGeometry().adjusted(100, 100, -100, -100)) << (QList<QRect>() << QRect(100, 50, 200, 0) << QRect(130, 50, 0, 0) << QRect(100, 100, 200, 200) << QApplication::desktop()->availableGeometry().adjusted(100, 100, -100, -100) << QRect(130, 100, 0, 200)) << (QList<QRect>() << QRect(130, 50, 0, 0) << QRect(100, 100, 200, 200) << QApplication::desktop()->availableGeometry().adjusted(100, 100, -100, -100) << QRect(130, 100, 0, 200) << QRect(100, 50, 200, 0)); QList<int> windowFlags; windowFlags << 0 << Qt::FramelessWindowHint #ifdef Q_WS_X11 << Qt::X11BypassWindowManagerHint #endif ; foreach (QList<QRect> l, rects) { QRect rect = l.first(); foreach (int windowFlag, windowFlags) { QTest::newRow(QString("%1,%2 %3x%4, flags %5") .arg(rect.x()) .arg(rect.y()) .arg(rect.width()) .arg(rect.height()) .arg(windowFlag, 0, 16).toAscii()) << l << windowFlag; } } } void tst_QWidget::setWindowGeometry() { #ifdef Q_WS_X11 //Since WindowManager operation are all assync, and we have no way to know if the window // manager has finished playing with the window geometry, this test can't be reliable. QSKIP("Window Manager behaviour are too random for this test", SkipAll); #endif QFETCH(QList<QRect>, rects); QFETCH(int, windowFlags); QRect rect = rects.takeFirst(); { // test setGeometry() without actually showing the window QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.setGeometry(rect); QTest::qWait(100); QCOMPARE(widget.geometry(), rect); // setGeometry() without showing foreach (QRect r, rects) { widget.setGeometry(r); QTest::qWait(100); QCOMPARE(widget.geometry(), r); } } { // setGeometry() first, then show() QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.setGeometry(rect); widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(20); QTRY_COMPARE(widget.geometry(), rect); // setGeometry() while shown foreach (QRect r, rects) { widget.setGeometry(r); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), r); } widget.setGeometry(rect); QTest::qWait(20); QTRY_COMPARE(widget.geometry(), rect); // now hide widget.hide(); QTest::qWait(20); QTRY_COMPARE(widget.geometry(), rect); // setGeometry() after hide() foreach (QRect r, rects) { widget.setGeometry(r); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), r); } widget.setGeometry(rect); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // show() again, geometry() should still be the same widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // final hide(), again geometry() should be unchanged widget.hide(); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); } { // show() first, then setGeometry() QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.show(); QTest::qWaitForWindowShown(&widget); widget.setGeometry(rect); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // setGeometry() while shown foreach (QRect r, rects) { widget.setGeometry(r); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), r); } widget.setGeometry(rect); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // now hide widget.hide(); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // setGeometry() after hide() foreach (QRect r, rects) { widget.setGeometry(r); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), r); } widget.setGeometry(rect); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // show() again, geometry() should still be the same widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); // final hide(), again geometry() should be unchanged widget.hide(); QTest::qWait(10); QTRY_COMPARE(widget.geometry(), rect); } } #if defined (Q_WS_WIN) && !defined(Q_OS_WINCE) void tst_QWidget::setGeometry_win() { QWidget widget; widget.setGeometry(0, 600, 100,100); widget.show(); widget.setWindowState(widget.windowState() | Qt::WindowMaximized); QRect geom = widget.normalGeometry(); widget.close(); widget.setGeometry(geom); widget.setWindowState(widget.windowState() | Qt::WindowMaximized); widget.show(); RECT rt; ::GetWindowRect(widget.internalWinId(), &rt); QVERIFY(rt.left <= 0); QVERIFY(rt.top <= 0); } #endif void tst_QWidget::windowMoveResize_data() { setWindowGeometry_data(); } void tst_QWidget::windowMoveResize() { #ifdef Q_WS_X11 //Since WindowManager operation are all assync, and we have no way to know if the window // manager has finished playing with the window geometry, this test can't be reliable. QSKIP("Window Manager behaviour are too random for this test", SkipAll); #endif #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #endif QFETCH(QList<QRect>, rects); QFETCH(int, windowFlags); QRect rect = rects.takeFirst(); { // test setGeometry() without actually showing the window QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.move(rect.topLeft()); widget.resize(rect.size()); QTest::qWait(10); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // move() without showing foreach (QRect r, rects) { widget.move(r.topLeft()); widget.resize(r.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), r.topLeft()); QTRY_COMPARE(widget.size(), r.size()); } } { // move() first, then show() QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.move(rect.topLeft()); widget.resize(rect.size()); widget.show(); QTest::qWait(10); #if defined(Q_WS_MAC) && !defined(QT_MAC_USE_COCOA) QEXPECT_FAIL("130,50 0x0, flags 0", "Showing a window with 0x0 size shifts it up.", Continue); #endif QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // move() while shown foreach (QRect r, rects) { #ifdef Q_WS_X11 if ((widget.width() == 0 || widget.height() == 0) && r.width() != 0 && r.height() != 0) { QEXPECT_FAIL("130,100 0x200, flags 0", "First resize after show of zero-sized gets wrong win_gravity.", Continue); QEXPECT_FAIL("100,50 200x0, flags 0", "First resize after show of zero-sized gets wrong win_gravity.", Continue); QEXPECT_FAIL("130,50 0x0, flags 0", "First resize after show of zero-sized gets wrong win_gravity.", Continue); } #endif widget.move(r.topLeft()); widget.resize(r.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), r.topLeft()); QTRY_COMPARE(widget.size(), r.size()); } widget.move(rect.topLeft()); widget.resize(rect.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // now hide widget.hide(); QTest::qWait(10); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // move() after hide() foreach (QRect r, rects) { widget.move(r.topLeft()); widget.resize(r.size()); QApplication::processEvents(); #if defined(Q_WS_MAC) && defined(QT_MAC_USE_COCOA) if (r.width() == 0 && r.height() > 0) { widget.move(r.topLeft()); widget.resize(r.size()); } #endif QTRY_COMPARE(widget.pos(), r.topLeft()); QTRY_COMPARE(widget.size(), r.size()); } widget.move(rect.topLeft()); widget.resize(rect.size()); QTest::qWait(10); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // show() again, pos() should be the same widget.show(); QTest::qWaitForWindowShown(&widget); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // final hide(), again pos() should be unchanged widget.hide(); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); } { // show() first, then move() QWidget widget; if (windowFlags != 0) widget.setWindowFlags(Qt::WindowFlags(windowFlags)); widget.show(); QTest::qWaitForWindowShown(&widget); QApplication::processEvents(); widget.move(rect.topLeft()); widget.resize(rect.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // move() while shown foreach (QRect r, rects) { widget.move(r.topLeft()); widget.resize(r.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), r.topLeft()); QTRY_COMPARE(widget.size(), r.size()); } widget.move(rect.topLeft()); widget.resize(rect.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // now hide widget.hide(); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // move() after hide() foreach (QRect r, rects) { widget.move(r.topLeft()); widget.resize(r.size()); QApplication::processEvents(); #if defined(Q_WS_MAC) && defined(QT_MAC_USE_COCOA) if (r.width() == 0 && r.height() > 0) { widget.move(r.topLeft()); widget.resize(r.size()); } #endif QTRY_COMPARE(widget.pos(), r.topLeft()); QTRY_COMPARE(widget.size(), r.size()); } widget.move(rect.topLeft()); widget.resize(rect.size()); QApplication::processEvents(); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // show() again, pos() should be the same widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(10); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); // final hide(), again pos() should be unchanged widget.hide(); QTest::qWait(10); QTRY_COMPARE(widget.pos(), rect.topLeft()); QTRY_COMPARE(widget.size(), rect.size()); } } class ColorWidget : public QWidget { public: ColorWidget(QWidget *parent = 0, const QColor &c = QColor(Qt::red)) : QWidget(parent, Qt::FramelessWindowHint), color(c) { QPalette opaquePalette = palette(); opaquePalette.setColor(backgroundRole(), color); setPalette(opaquePalette); setAutoFillBackground(true); } void paintEvent(QPaintEvent *e) { r += e->region(); } void reset() { r = QRegion(); } QColor color; QRegion r; }; #define VERIFY_COLOR(region, color) { \ const QRegion r = QRegion(region); \ for (int i = 0; i < r.rects().size(); ++i) { \ const QRect rect = r.rects().at(i); \ for (int t = 0; t < 5; t++) { \ const QPixmap pixmap = QPixmap::grabWindow(QDesktopWidget().winId(), \ rect.left(), rect.top(), \ rect.width(), rect.height()); \ QCOMPARE(pixmap.size(), rect.size()); \ QPixmap expectedPixmap(pixmap); /* ensure equal formats */ \ expectedPixmap.detach(); \ expectedPixmap.fill(color); \ QImage image = pixmap.toImage(); \ uint alphaCorrection = image.format() == QImage::Format_RGB32 ? 0xff000000 : 0; \ uint firstPixel = image.pixel(0,0) | alphaCorrection; \ if ( firstPixel != QColor(color).rgb() && t < 4 ) \ { QTest::qWait(200); continue; } \ QCOMPARE(firstPixel, QColor(color).rgb()); \ QCOMPARE(pixmap, expectedPixmap); \ break; \ } \ } \ } void tst_QWidget::moveChild_data() { QTest::addColumn<QPoint>("offset"); QTest::newRow("right") << QPoint(20, 0); QTest::newRow("down") << QPoint(0, 20); QTest::newRow("left") << QPoint(-20, 0); QTest::newRow("up") << QPoint(0, -20); } void tst_QWidget::moveChild() { QFETCH(QPoint, offset); ColorWidget parent; // prevent custom styles parent.setStyle(new QWindowsStyle); ColorWidget child(&parent, Qt::blue); #ifndef Q_OS_WINCE parent.setGeometry(QRect(QPoint(QApplication::desktop()->availableGeometry(&parent).topLeft()), QSize(100, 100))); #else parent.setGeometry(60, 60, 150, 150); #endif child.setGeometry(25, 25, 50, 50); QPoint childOffset = child.mapToGlobal(QPoint()); parent.show(); QTest::qWaitForWindowShown(&parent); QTest::qWait(30); const QPoint tlwOffset = parent.geometry().topLeft(); QTRY_COMPARE(parent.r, QRegion(parent.rect()) - child.geometry()); QTRY_COMPARE(child.r, QRegion(child.rect())); VERIFY_COLOR(child.geometry().translated(tlwOffset), child.color); VERIFY_COLOR(QRegion(parent.geometry()) - child.geometry().translated(tlwOffset), parent.color); parent.reset(); child.reset(); // move const QRect oldGeometry = child.geometry(); QPoint pos = child.pos() + offset; child.move(pos); QTest::qWait(100); QTRY_COMPARE(pos, child.pos()); QCOMPARE(parent.r, QRegion(oldGeometry) - child.geometry()); #if !defined(Q_WS_MAC) // should be scrolled in backingstore QCOMPARE(child.r, QRegion()); #endif VERIFY_COLOR(child.geometry().translated(tlwOffset), child.color); VERIFY_COLOR(QRegion(parent.geometry()) - child.geometry().translated(tlwOffset), parent.color); } void tst_QWidget::showAndMoveChild() { QWidget parent(0, Qt::FramelessWindowHint); // prevent custom styles parent.setStyle(new QWindowsStyle); QDesktopWidget desktop; QRect desktopDimensions = desktop.availableGeometry(&parent); parent.setGeometry(desktopDimensions); parent.setPalette(Qt::red); parent.show(); QTest::qWaitForWindowShown(&parent); QTest::qWait(10); const QPoint tlwOffset = parent.geometry().topLeft(); QWidget child(&parent); child.resize(desktopDimensions.width()/2, desktopDimensions.height()/2); child.setPalette(Qt::blue); child.setAutoFillBackground(true); // Ensure that the child is repainted correctly when moved right after show. // NB! Do NOT processEvents() (or qWait()) in between show() and move(). child.show(); child.move(desktopDimensions.width()/2, desktopDimensions.height()/2); qApp->processEvents(); VERIFY_COLOR(child.geometry().translated(tlwOffset), Qt::blue); VERIFY_COLOR(QRegion(parent.geometry()) - child.geometry().translated(tlwOffset), Qt::red); } void tst_QWidget::subtractOpaqueSiblings() { #ifdef QT_MAC_USE_COCOA QSKIP("Cocoa only has rect granularity.", SkipAll); #else QWidget w; w.setGeometry(50, 50, 300, 300); ColorWidget *large = new ColorWidget(&w, Qt::red); large->setGeometry(50, 50, 200, 200); ColorWidget *medium = new ColorWidget(large, Qt::gray); medium->setGeometry(50, 50, 100, 100); ColorWidget *tall = new ColorWidget(&w, Qt::blue); tall->setGeometry(100, 30, 50, 100); w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(10); large->reset(); medium->reset(); tall->reset(); medium->update(); QTest::qWait(10); // QWidgetPrivate::subtractOpaqueSiblings() should prevent parts of medium // to be repainted and tall from be repainted at all. QTRY_COMPARE(large->r, QRegion()); QTRY_COMPARE(tall->r, QRegion()); QTRY_COMPARE(medium->r.translated(medium->mapTo(&w, QPoint())), QRegion(medium->geometry().translated(large->pos())) - tall->geometry()); #endif } void tst_QWidget::deleteStyle() { QWidget widget; widget.setStyle(new QWindowsStyle); widget.show(); delete widget.style(); qApp->processEvents(); } #ifdef Q_WS_WIN void tst_QWidget::getDC() { QWidget widget; widget.setGeometry(0, 0, 2, 4); HDC dc = widget.getDC(); QVERIFY(dc != 0); widget.releaseDC(dc); } #endif class TopLevelFocusCheck: public QWidget { Q_OBJECT public: QLineEdit* edit; TopLevelFocusCheck(QWidget* parent = 0) : QWidget(parent) { edit = new QLineEdit(this); edit->hide(); edit->installEventFilter(this); } public slots: void mouseDoubleClickEvent ( QMouseEvent * /*event*/ ) { edit->show(); edit->setFocus(Qt::OtherFocusReason); qApp->processEvents(); } bool eventFilter(QObject *obj, QEvent *event) { if (obj == edit && event->type()== QEvent::FocusOut) { edit->hide(); return true; } return false; } }; void tst_QWidget::multipleToplevelFocusCheck() { TopLevelFocusCheck w1; TopLevelFocusCheck w2; w1.resize(200, 200); w1.show(); QTest::qWaitForWindowShown(&w1); w2.resize(200,200); w2.show(); QTest::qWaitForWindowShown(&w2); QTest::qWait(100); QApplication::setActiveWindow(&w1); w1.activateWindow(); QApplication::processEvents(); QTRY_COMPARE(QApplication::activeWindow(), static_cast<QWidget *>(&w1)); QTest::qWait(50); QTest::mouseDClick(&w1, Qt::LeftButton); QTRY_COMPARE(QApplication::focusWidget(), static_cast<QWidget *>(w1.edit)); w2.activateWindow(); QApplication::setActiveWindow(&w2); QApplication::processEvents(); QTRY_COMPARE(QApplication::activeWindow(), static_cast<QWidget *>(&w2)); QTest::mouseClick(&w2, Qt::LeftButton); #ifdef Q_WS_QWS QEXPECT_FAIL("", "embedded toplevels take focus anyway", Continue); #endif QTRY_COMPARE(QApplication::focusWidget(), (QWidget *)0); QTest::mouseDClick(&w2, Qt::LeftButton); QTRY_COMPARE(QApplication::focusWidget(), static_cast<QWidget *>(w2.edit)); w1.activateWindow(); QApplication::setActiveWindow(&w1); QApplication::processEvents(); QTRY_COMPARE(QApplication::activeWindow(), static_cast<QWidget *>(&w1)); QTest::mouseDClick(&w1, Qt::LeftButton); QTRY_COMPARE(QApplication::focusWidget(), static_cast<QWidget *>(w1.edit)); w2.activateWindow(); QApplication::setActiveWindow(&w2); QApplication::processEvents(); QTRY_COMPARE(QApplication::activeWindow(), static_cast<QWidget *>(&w2)); QTest::mouseClick(&w2, Qt::LeftButton); QTRY_COMPARE(QApplication::focusWidget(), (QWidget *)0); } void tst_QWidget::setFocus() { { // move focus to another window testWidget->activateWindow(); QApplication::setActiveWindow(testWidget); if (testWidget->focusWidget()) testWidget->focusWidget()->clearFocus(); else testWidget->clearFocus(); // window and children never shown, nobody gets focus QWidget window; QWidget child1(&window); child1.setFocusPolicy(Qt::StrongFocus); QWidget child2(&window); child2.setFocusPolicy(Qt::StrongFocus); child1.setFocus(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), &child1); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child2.setFocus(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), &child2); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); } { // window and children show, but window not active, nobody gets focus QWidget window; QWidget child1(&window); child1.setFocusPolicy(Qt::StrongFocus); QWidget child2(&window); child2.setFocusPolicy(Qt::StrongFocus); window.show(); // note: window may be active, but we don't want it to be testWidget->activateWindow(); QApplication::setActiveWindow(testWidget); if (testWidget->focusWidget()) testWidget->focusWidget()->clearFocus(); else testWidget->clearFocus(); child1.setFocus(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), &child1); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child2.setFocus(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), &child2); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); } { // window and children show, but window *is* active, children get focus QWidget window; QWidget child1(&window); child1.setFocusPolicy(Qt::StrongFocus); QWidget child2(&window); child2.setFocusPolicy(Qt::StrongFocus); window.show(); #ifdef Q_WS_X11 QApplication::setActiveWindow(&window); QTest::qWaitForWindowShown(&window); #else window.activateWindow(); QApplication::processEvents(); #endif child1.setFocus(); QTRY_VERIFY(child1.hasFocus()); QCOMPARE(window.focusWidget(), &child1); QCOMPARE(QApplication::focusWidget(), &child1); child2.setFocus(); QVERIFY(child2.hasFocus()); QCOMPARE(window.focusWidget(), &child2); QCOMPARE(QApplication::focusWidget(), &child2); } { // window shown and active, children created, don't get focus, but get focus when shown QWidget window; window.show(); #ifdef Q_WS_X11 QApplication::setActiveWindow(&window); QTest::qWaitForWindowShown(&window); #else window.activateWindow(); #endif QWidget child1(&window); child1.setFocusPolicy(Qt::StrongFocus); QWidget child2(&window); child2.setFocusPolicy(Qt::StrongFocus); child1.setFocus(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child1.show(); #ifdef Q_WS_X11 QApplication::setActiveWindow(&child1); child1.activateWindow(); #endif QApplication::processEvents(); QTRY_VERIFY(child1.hasFocus()); QCOMPARE(window.focusWidget(), &child1); QCOMPARE(QApplication::focusWidget(), &child1); child2.setFocus(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), &child1); QCOMPARE(QApplication::focusWidget(), &child1); child2.show(); QVERIFY(child2.hasFocus()); QCOMPARE(window.focusWidget(), &child2); QCOMPARE(QApplication::focusWidget(), &child2); } { // window shown and active, children created, don't get focus, // even after setFocus(), hide(), then show() QWidget window; window.show(); #ifdef Q_WS_X11 QApplication::setActiveWindow(&window); QTest::qWaitForWindowShown(&window); #else window.activateWindow(); #endif QWidget child1(&window); child1.setFocusPolicy(Qt::StrongFocus); QWidget child2(&window); child2.setFocusPolicy(Qt::StrongFocus); child1.setFocus(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child1.hide(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child1.show(); QVERIFY(!child1.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child2.setFocus(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child2.hide(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); child2.show(); QVERIFY(!child2.hasFocus()); QCOMPARE(window.focusWidget(), static_cast<QWidget *>(0)); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget *>(0)); } } class EventSpy : public QObject { public: EventSpy(QWidget *widget, QEvent::Type event) : m_widget(widget), eventToSpy(event), m_count(0) { if (m_widget) m_widget->installEventFilter(this); } QWidget *widget() const { return m_widget; } int count() const { return m_count; } void clear() { m_count = 0; } protected: bool eventFilter(QObject *object, QEvent *event) { if (event->type() == eventToSpy) ++m_count; return QObject::eventFilter(object, event); } private: QWidget *m_widget; QEvent::Type eventToSpy; int m_count; }; void tst_QWidget::setCursor() { #ifndef QT_NO_CURSOR { QWidget window; QWidget child(&window); QVERIFY(!window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); window.setCursor(window.cursor()); QVERIFY(window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window.cursor().shape()); } // do it again, but with window show()n { QWidget window; QWidget child(&window); window.show(); QVERIFY(!window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); window.setCursor(window.cursor()); QVERIFY(window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window.cursor().shape()); } { QWidget window; QWidget child(&window); window.setCursor(Qt::WaitCursor); QVERIFY(window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window.cursor().shape()); } // same thing again, just with window show()n { QWidget window; QWidget child(&window); window.show(); window.setCursor(Qt::WaitCursor); QVERIFY(window.testAttribute(Qt::WA_SetCursor)); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window.cursor().shape()); } // reparenting child should not cause the WA_SetCursor to become set { QWidget window; QWidget window2; QWidget child(&window); window.setCursor(Qt::WaitCursor); child.setParent(0); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), QCursor().shape()); child.setParent(&window2); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window2.cursor().shape()); window2.setCursor(Qt::WaitCursor); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window2.cursor().shape()); } // again, with windows show()n { QWidget window; QWidget window2; QWidget child(&window); window.setCursor(Qt::WaitCursor); window.show(); child.setParent(0); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), QCursor().shape()); child.setParent(&window2); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window2.cursor().shape()); window2.show(); window2.setCursor(Qt::WaitCursor); QVERIFY(!child.testAttribute(Qt::WA_SetCursor)); QCOMPARE(child.cursor().shape(), window2.cursor().shape()); } // test if CursorChange is sent { QWidget widget; EventSpy spy(&widget, QEvent::CursorChange); QCOMPARE(spy.count(), 0); widget.setCursor(QCursor(Qt::WaitCursor)); QCOMPARE(spy.count(), 1); widget.unsetCursor(); QCOMPARE(spy.count(), 2); } #endif } void tst_QWidget::setToolTip() { QWidget widget; EventSpy spy(&widget, QEvent::ToolTipChange); QCOMPARE(spy.count(), 0); QCOMPARE(widget.toolTip(), QString()); widget.setToolTip(QString("Hello")); QCOMPARE(widget.toolTip(), QString("Hello")); QCOMPARE(spy.count(), 1); widget.setToolTip(QString()); QCOMPARE(widget.toolTip(), QString()); QCOMPARE(spy.count(), 2); #ifdef Q_OS_WINCE_WM QSKIP("Mouse over doesn't work on Windows mobile.", SkipAll); #endif for (int pass = 0; pass < 2; ++pass) { QWidget *popup = new QWidget(0, Qt::Popup); popup->resize(150, 50); QFrame *frame = new QFrame(popup); frame->setGeometry(0, 0, 50, 50); frame->setFrameStyle(QFrame::Box | QFrame::Plain); EventSpy spy1(frame, QEvent::ToolTip); EventSpy spy2(popup, QEvent::ToolTip); frame->setMouseTracking(pass == 0 ? false : true); frame->setToolTip(QLatin1String("TOOLTIP FRAME")); popup->setToolTip(QLatin1String("TOOLTIP POPUP")); popup->show(); QTest::qWaitForWindowShown(popup); QTest::qWait(10); QTest::mouseMove(frame); QTest::qWait(900); // delay is 700 QCOMPARE(spy1.count(), 1); QCOMPARE(spy2.count(), 0); if (pass == 0) QTest::qWait(2200); // delay is 2000 QTest::mouseMove(popup); delete popup; } } void tst_QWidget::testWindowIconChangeEventPropagation() { // Create widget hierarchy. QWidget topLevelWidget; QWidget topLevelChild(&topLevelWidget); QDialog dialog(&topLevelWidget); QWidget dialogChild(&dialog); QWidgetList widgets; widgets << &topLevelWidget << &topLevelChild << &dialog << &dialogChild; QCOMPARE(widgets.count(), 4); // Create spy lists. QList <EventSpy *> applicationEventSpies; QList <EventSpy *> widgetEventSpies; foreach (QWidget *widget, widgets) { applicationEventSpies.append(new EventSpy(widget, QEvent::ApplicationWindowIconChange)); widgetEventSpies.append(new EventSpy(widget, QEvent::WindowIconChange)); } // QApplication::setWindowIcon const QIcon windowIcon = qApp->style()->standardIcon(QStyle::SP_TitleBarMenuButton); qApp->setWindowIcon(windowIcon); for (int i = 0; i < widgets.count(); ++i) { // Check QEvent::ApplicationWindowIconChange EventSpy *spy = applicationEventSpies.at(i); QWidget *widget = spy->widget(); if (widget->isWindow()) { QCOMPARE(spy->count(), 1); QCOMPARE(widget->windowIcon(), windowIcon); } else { QCOMPARE(spy->count(), 0); } spy->clear(); // Check QEvent::WindowIconChange spy = widgetEventSpies.at(i); QCOMPARE(spy->count(), 1); spy->clear(); } // Set icon on a top-level widget. topLevelWidget.setWindowIcon(*new QIcon); for (int i = 0; i < widgets.count(); ++i) { // Check QEvent::ApplicationWindowIconChange EventSpy *spy = applicationEventSpies.at(i); QCOMPARE(spy->count(), 0); spy->clear(); // Check QEvent::WindowIconChange spy = widgetEventSpies.at(i); QWidget *widget = spy->widget(); if (widget == &topLevelWidget) { QCOMPARE(widget->windowIcon(), QIcon()); QCOMPARE(spy->count(), 1); } else if (topLevelWidget.isAncestorOf(widget)) { QCOMPARE(spy->count(), 1); } else { QCOMPARE(spy->count(), 0); } spy->clear(); } // Cleanup. for (int i = 0; i < widgets.count(); ++i) { delete applicationEventSpies.at(i); delete widgetEventSpies.at(i); } qApp->setWindowIcon(QIcon()); } #ifdef Q_WS_X11 void tst_QWidget::minAndMaxSizeWithX11BypassWindowManagerHint() { // Same size as in QWidget::create_sys(). const QSize desktopSize = QApplication::desktop()->size(); const QSize originalSize(desktopSize.width() / 2, desktopSize.height() * 4 / 10); { // Maximum size. QWidget widget(0, Qt::X11BypassWindowManagerHint); const QSize newMaximumSize = widget.size().boundedTo(originalSize) - QSize(10, 10); widget.setMaximumSize(newMaximumSize); QCOMPARE(widget.size(), newMaximumSize); widget.show(); qt_x11_wait_for_window_manager(&widget); QCOMPARE(widget.size(), newMaximumSize); } { // Minimum size. QWidget widget(0, Qt::X11BypassWindowManagerHint); const QSize newMinimumSize = widget.size().expandedTo(originalSize) + QSize(10, 10); widget.setMinimumSize(newMinimumSize); QCOMPARE(widget.size(), newMinimumSize); widget.show(); qt_x11_wait_for_window_manager(&widget); QCOMPARE(widget.size(), newMinimumSize); } } class ShowHideShowWidget : public QWidget { Q_OBJECT int state; public: bool gotExpectedMapNotify; ShowHideShowWidget() : state(0), gotExpectedMapNotify(false) { startTimer(1000); } void timerEvent(QTimerEvent *) { switch (state++) { case 0: show(); break; case 1: emit done(); break; } } bool x11Event(XEvent *event) { if (state == 1 && event->type == MapNotify) gotExpectedMapNotify = true; return false; } signals: void done(); }; void tst_QWidget::showHideShow() { ShowHideShowWidget w; w.show(); w.hide(); QEventLoop eventLoop; connect(&w, SIGNAL(done()), &eventLoop, SLOT(quit())); eventLoop.exec(); QVERIFY(w.gotExpectedMapNotify); } void tst_QWidget::clean_qt_x11_enforce_cursor() { { QWidget window; QWidget *w = new QWidget(&window); QWidget *child = new QWidget(w); child->setAttribute(Qt::WA_SetCursor, true); window.show(); QApplication::setActiveWindow(&window); QTest::qWaitForWindowShown(&window); QTest::qWait(100); QCursor::setPos(window.geometry().center()); QTest::qWait(100); child->setFocus(); QApplication::processEvents(); QTest::qWait(100); delete w; } QGraphicsScene scene; QLineEdit *edit = new QLineEdit; scene.addWidget(edit); // If the test didn't crash, then it passed. } #endif class EventRecorder : public QObject { Q_OBJECT public: typedef QList<QPair<QWidget *, QEvent::Type> > EventList; EventRecorder(QObject *parent = 0) : QObject(parent) { } EventList eventList() { return events; } void clear() { events.clear(); } bool eventFilter(QObject *object, QEvent *event) { QWidget *widget = qobject_cast<QWidget *>(object); if (widget && !event->spontaneous()) events.append(qMakePair(widget, event->type())); return false; } private: EventList events; }; void tst_QWidget::compatibilityChildInsertedEvents() { EventRecorder::EventList expected; bool accessibilityEnabled = false; #if defined(Q_WS_MAC) && !defined(QT_MAC_USE_COCOA) accessibilityEnabled = AXAPIEnabled(); #endif // Move away the cursor; otherwise it might result in an enter event if it's // inside the widget when the widget is shown. QCursor::setPos(qApp->desktop()->availableGeometry().bottomRight()); QTest::qWait(100); { // no children created, not shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Polish) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)); QCOMPARE(spy.eventList(), expected); } { // no children, shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); widget.show(); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::WinIdChange) << qMakePair(&widget, QEvent::Polish) << qMakePair(&widget, QEvent::Move) << qMakePair(&widget, QEvent::Resize) << qMakePair(&widget, QEvent::Show); if (accessibilityEnabled) expected << qMakePair(&widget, QEvent::AccessibilityPrepare); expected << qMakePair(&widget, QEvent::ShowToParent); QCOMPARE(spy.eventList(), expected); spy.clear(); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)) #if defined(Q_WS_X11) || defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_WS_S60) || defined(Q_WS_QPA) << qMakePair(&widget, QEvent::UpdateRequest) #endif ; QCOMPARE(spy.eventList(), expected); } { // 2 children, not shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); QWidget child1(&widget); QWidget child2; child2.setParent(&widget); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 2))); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildAdded); QCOMPARE(spy.eventList(), expected); spy.clear(); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInsertedRequest) << qMakePair(&widget, QEvent::ChildInserted) << qMakePair(&widget, QEvent::ChildInserted) #endif << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Polish) << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)) << qMakePair(&widget, QEvent::Type(QEvent::User + 2)); QCOMPARE(spy.eventList(), expected); } { // 2 children, widget shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); QWidget child1(&widget); QWidget child2; child2.setParent(&widget); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 2))); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildAdded); QCOMPARE(spy.eventList(), expected); spy.clear(); widget.show(); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::WinIdChange) << qMakePair(&widget, QEvent::Polish) #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInserted) << qMakePair(&widget, QEvent::ChildInserted) #endif << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::Move) << qMakePair(&widget, QEvent::Resize) << qMakePair(&widget, QEvent::Show); if (accessibilityEnabled) expected << qMakePair(&widget, QEvent::AccessibilityPrepare); expected << qMakePair(&widget, QEvent::ShowToParent); QCOMPARE(spy.eventList(), expected); spy.clear(); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInsertedRequest) #endif << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)) << qMakePair(&widget, QEvent::Type(QEvent::User + 2)) #if defined(Q_WS_X11) || defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_WS_S60) || defined(Q_WS_QPA) << qMakePair(&widget, QEvent::UpdateRequest) #endif ; QCOMPARE(spy.eventList(), expected); } { // 2 children, but one is reparented away, not shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); QWidget child1(&widget); QWidget child2; child2.setParent(&widget); child2.setParent(0); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 2))); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildRemoved); QCOMPARE(spy.eventList(), expected); spy.clear(); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInsertedRequest) << qMakePair(&widget, QEvent::ChildInserted) #endif << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Polish) << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)) << qMakePair(&widget, QEvent::Type(QEvent::User + 2)); QCOMPARE(spy.eventList(), expected); } { // 2 children, but one is reparented away, then widget is shown QWidget widget; EventRecorder spy; widget.installEventFilter(&spy); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 1))); QWidget child1(&widget); QWidget child2; child2.setParent(&widget); child2.setParent(0); QCoreApplication::postEvent(&widget, new QEvent(QEvent::Type(QEvent::User + 2))); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildAdded) << qMakePair(&widget, QEvent::ChildRemoved); QCOMPARE(spy.eventList(), expected); spy.clear(); widget.show(); expected = EventRecorder::EventList() << qMakePair(&widget, QEvent::WinIdChange) << qMakePair(&widget, QEvent::Polish) #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInserted) #endif << qMakePair(&widget, QEvent::ChildPolished) << qMakePair(&widget, QEvent::Move) << qMakePair(&widget, QEvent::Resize) << qMakePair(&widget, QEvent::Show); if (accessibilityEnabled) expected << qMakePair(&widget, QEvent::AccessibilityPrepare); expected << qMakePair(&widget, QEvent::ShowToParent); QCOMPARE(spy.eventList(), expected); spy.clear(); QCoreApplication::sendPostedEvents(); expected = EventRecorder::EventList() #ifdef QT_HAS_QT3SUPPORT << qMakePair(&widget, QEvent::ChildInsertedRequest) #endif << qMakePair(&widget, QEvent::PolishRequest) << qMakePair(&widget, QEvent::Type(QEvent::User + 1)) << qMakePair(&widget, QEvent::Type(QEvent::User + 2)) #if defined(Q_WS_X11) || defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_WS_S60) || defined(Q_WS_QPA) << qMakePair(&widget, QEvent::UpdateRequest) #endif ; QCOMPARE(spy.eventList(), expected); } } class RenderWidget : public QWidget { public: RenderWidget(QWidget *source) : source(source), ellipse(false) {} void setEllipseEnabled(bool enable = true) { ellipse = enable; update(); } protected: void paintEvent(QPaintEvent *) { if (ellipse) { QPainter painter(this); painter.fillRect(rect(), Qt::red); painter.end(); QRegion regionToRender = QRegion(0, 0, source->width(), source->height() / 2, QRegion::Ellipse); source->render(this, QPoint(0, 30), regionToRender); } else { source->render(this); } } private: QWidget *source; bool ellipse; }; void tst_QWidget::render() { return; QCalendarWidget source; // disable anti-aliasing to eliminate potential differences when subpixel antialiasing // is enabled on the screen QFont f; f.setStyleStrategy(QFont::NoAntialias); source.setFont(f); source.show(); QTest::qWaitForWindowShown(&source); // Render the entire source into target. RenderWidget target(&source); target.resize(source.size()); target.show(); qApp->processEvents(); qApp->sendPostedEvents(); QTest::qWait(250); QImage sourceImage = QPixmap::grabWidget(&source).toImage(); qApp->processEvents(); QImage targetImage = QPixmap::grabWidget(&target).toImage(); qApp->processEvents(); QCOMPARE(sourceImage, targetImage); // Fill target.rect() will Qt::red and render // QRegion(0, 0, source->width(), source->height() / 2, QRegion::Ellipse) // of source into target with offset (0, 30). target.setEllipseEnabled(); qApp->processEvents(); qApp->sendPostedEvents(); targetImage = QPixmap::grabWidget(&target).toImage(); QVERIFY(sourceImage != targetImage); QCOMPARE(targetImage.pixel(target.width() / 2, 29), QColor(Qt::red).rgb()); QCOMPARE(targetImage.pixel(target.width() / 2, 30), sourceImage.pixel(source.width() / 2, 0)); // Test that a child widget properly fills its background { QWidget window; window.resize(100, 100); // prevent custom styles window.setStyle(new QWindowsStyle); window.show(); QTest::qWaitForWindowShown(&window); QWidget child(&window); child.resize(window.size()); child.show(); qApp->processEvents(); QCOMPARE(QPixmap::grabWidget(&child), QPixmap::grabWidget(&window)); } { // Check that the target offset is correct. QWidget widget; widget.resize(200, 200); widget.setAutoFillBackground(true); widget.setPalette(Qt::red); // prevent custom styles widget.setStyle(new QWindowsStyle); widget.show(); QTest::qWaitForWindowShown(&widget); QImage image(widget.size(), QImage::Format_RGB32); image.fill(QColor(Qt::blue).rgb()); // Target offset (0, 0) widget.render(&image, QPoint(), QRect(20, 20, 100, 100)); QCOMPARE(image.pixel(0, 0), QColor(Qt::red).rgb()); QCOMPARE(image.pixel(99, 99), QColor(Qt::red).rgb()); QCOMPARE(image.pixel(100, 100), QColor(Qt::blue).rgb()); // Target offset (20, 20). image.fill(QColor(Qt::blue).rgb()); widget.render(&image, QPoint(20, 20), QRect(20, 20, 100, 100)); QCOMPARE(image.pixel(0, 0), QColor(Qt::blue).rgb()); QCOMPARE(image.pixel(19, 19), QColor(Qt::blue).rgb()); QCOMPARE(image.pixel(20, 20), QColor(Qt::red).rgb()); QCOMPARE(image.pixel(119, 119), QColor(Qt::red).rgb()); QCOMPARE(image.pixel(120, 120), QColor(Qt::blue).rgb()); } } // On Windows the active palette is used instead of the inactive palette even // though the widget is invisible. This is probably related to task 178507/168682, // but for the renderInvisible test it doesn't matter, we're mostly interested // in testing the geometry so just workaround the palette issue for now. static void workaroundPaletteIssue(QWidget *widget) { #ifndef Q_WS_WIN return; #endif if (!widget) return; QWidget *navigationBar = qFindChild<QWidget *>(widget, QLatin1String("qt_calendar_navigationbar")); QVERIFY(navigationBar); QPalette palette = navigationBar->palette(); const QColor background = palette.color(QPalette::Inactive, navigationBar->backgroundRole()); const QColor highlightedText = palette.color(QPalette::Inactive, QPalette::HighlightedText); palette.setColor(QPalette::Active, navigationBar->backgroundRole(), background); palette.setColor(QPalette::Active, QPalette::HighlightedText, highlightedText); navigationBar->setPalette(palette); } //#define RENDER_DEBUG void tst_QWidget::renderInvisible() { QCalendarWidget *calendar = new QCalendarWidget; // disable anti-aliasing to eliminate potential differences when subpixel antialiasing // is enabled on the screen QFont f; f.setStyleStrategy(QFont::NoAntialias); calendar->setFont(f); calendar->show(); QTest::qWaitForWindowShown(calendar); // Create a dummy focus widget to get rid of focus rect in reference image. QLineEdit dummyFocusWidget; dummyFocusWidget.show(); QTest::qWaitForWindowShown(&dummyFocusWidget); qApp->processEvents(); QTest::qWait(120); // Create normal reference image. const QSize calendarSize = calendar->size(); QImage referenceImage(calendarSize, QImage::Format_ARGB32); calendar->render(&referenceImage); #ifdef RENDER_DEBUG referenceImage.save("referenceImage.png"); #endif QVERIFY(!referenceImage.isNull()); // Create resized reference image. const QSize calendarSizeResized = calendar->size() + QSize(50, 50); calendar->resize(calendarSizeResized); qApp->processEvents(); QTest::qWait(30); QImage referenceImageResized(calendarSizeResized, QImage::Format_ARGB32); calendar->render(&referenceImageResized); #ifdef RENDER_DEBUG referenceImageResized.save("referenceImageResized.png"); #endif QVERIFY(!referenceImageResized.isNull()); // Explicitly hide the calendar. calendar->hide(); qApp->processEvents(); QTest::qWait(30); workaroundPaletteIssue(calendar); { // Make sure we get the same image when the calendar is explicitly hidden. QImage testImage(calendarSizeResized, QImage::Format_ARGB32); calendar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("explicitlyHiddenCalendarResized.png"); #endif QCOMPARE(testImage, referenceImageResized); } // Now that we have reference images we can delete the source and re-create // the calendar and check that we get the same images from a calendar which has never // been visible, laid out or created (Qt::WA_WState_Created). delete calendar; calendar = new QCalendarWidget; calendar->setFont(f); workaroundPaletteIssue(calendar); { // Never been visible, created or laid out. QImage testImage(calendarSize, QImage::Format_ARGB32); calendar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("neverBeenVisibleCreatedOrLaidOut.png"); #endif QCOMPARE(testImage, referenceImage); } calendar->hide(); qApp->processEvents(); QTest::qWait(30); { // Calendar explicitly hidden. QImage testImage(calendarSize, QImage::Format_ARGB32); calendar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("explicitlyHiddenCalendar.png"); #endif QCOMPARE(testImage, referenceImage); } // Get navigation bar and explicitly hide it. QWidget *navigationBar = qFindChild<QWidget *>(calendar, QLatin1String("qt_calendar_navigationbar")); QVERIFY(navigationBar); navigationBar->hide(); { // Check that the navigation bar isn't drawn when rendering the entire calendar. QImage testImage(calendarSize, QImage::Format_ARGB32); calendar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("calendarWithoutNavigationBar.png"); #endif QVERIFY(testImage != referenceImage); } { // Make sure the navigation bar renders correctly even though it's hidden. QImage testImage(navigationBar->size(), QImage::Format_ARGB32); navigationBar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("explicitlyHiddenNavigationBar.png"); #endif QCOMPARE(testImage, referenceImage.copy(navigationBar->rect())); } // Get next month button. QWidget *nextMonthButton = qFindChild<QWidget *>(navigationBar, QLatin1String("qt_calendar_nextmonth")); QVERIFY(nextMonthButton); { // Render next month button. // Fill test image with correct background color. QImage testImage(nextMonthButton->size(), QImage::Format_ARGB32); navigationBar->render(&testImage, QPoint(), QRegion(), QWidget::RenderFlags()); #ifdef RENDER_DEBUG testImage.save("nextMonthButtonBackground.png"); #endif // Set the button's background color to Qt::transparent; otherwise it will fill the // background with QPalette::Window. const QPalette originalPalette = nextMonthButton->palette(); QPalette palette = originalPalette; palette.setColor(QPalette::Window, Qt::transparent); nextMonthButton->setPalette(palette); // Render the button on top of the background. nextMonthButton->render(&testImage); #ifdef RENDER_DEBUG testImage.save("nextMonthButton.png"); #endif const QRect buttonRect(nextMonthButton->mapTo(calendar, QPoint()), nextMonthButton->size()); QCOMPARE(testImage, referenceImage.copy(buttonRect)); // Restore palette. nextMonthButton->setPalette(originalPalette); } // Navigation bar isn't explicitly hidden anymore. navigationBar->show(); qApp->processEvents(); QTest::qWait(30); QVERIFY(!calendar->isVisible()); // Now, completely mess up the layout. This will trigger an update on the layout // when the calendar is visible or shown, but it's not. QWidget::render must therefore // make sure the layout is activated before rendering. QVERIFY(!calendar->isVisible()); calendar->resize(calendarSizeResized); qApp->processEvents(); { // Make sure we get an image equal to the resized reference image. QImage testImage(calendarSizeResized, QImage::Format_ARGB32); calendar->render(&testImage); #ifdef RENDER_DEBUG testImage.save("calendarResized.png"); #endif QCOMPARE(testImage, referenceImageResized); } { // Make sure we lay out the widget correctly the first time it's rendered. QCalendarWidget calendar; const QSize calendarSize = calendar.sizeHint(); QImage image(2 * calendarSize, QImage::Format_ARGB32); image.fill(QColor(Qt::red).rgb()); calendar.render(&image); for (int i = calendarSize.height(); i < 2 * calendarSize.height(); ++i) for (int j = calendarSize.width(); j < 2 * calendarSize.width(); ++j) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } { // Ensure that we don't call adjustSize() on invisible top-levels if render() is called // right after widgets have been added/removed to/from its layout. QWidget topLevel; topLevel.setLayout(new QVBoxLayout); QWidget *widget = new QLineEdit; topLevel.layout()->addWidget(widget); const QSize initialSize = topLevel.size(); QPixmap pixmap(topLevel.sizeHint()); topLevel.render(&pixmap); // triggers adjustSize() const QSize finalSize = topLevel.size(); QVERIFY(finalSize != initialSize); topLevel.layout()->removeWidget(widget); QCOMPARE(topLevel.size(), finalSize); topLevel.render(&pixmap); QCOMPARE(topLevel.size(), finalSize); topLevel.layout()->addWidget(widget); QCOMPARE(topLevel.size(), finalSize); topLevel.render(&pixmap); QCOMPARE(topLevel.size(), finalSize); } } void tst_QWidget::renderWithPainter() { QWidget widget; // prevent custom styles widget.setStyle(new QWindowsStyle); widget.show(); widget.resize(70, 50); widget.setAutoFillBackground(true); widget.setPalette(Qt::black); // Render the entire widget onto the image. QImage image(QSize(70, 50), QImage::Format_ARGB32); image.fill(QColor(Qt::red).rgb()); QPainter painter(&image); widget.render(&painter); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) QCOMPARE(image.pixel(j, i), QColor(Qt::black).rgb()); } // Translate painter (10, 10). painter.save(); image.fill(QColor(Qt::red).rgb()); painter.translate(10, 10); widget.render(&painter); painter.restore(); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (i < 10 || j < 10) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::black).rgb()); } } // Pass target offset (10, 10) (the same as QPainter::translate). image.fill(QColor(Qt::red).rgb()); widget.render(&painter, QPoint(10, 10)); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (i < 10 || j < 10) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::black).rgb()); } } // Translate (10, 10) and pass target offset (10, 10). painter.save(); image.fill(QColor(Qt::red).rgb()); painter.translate(10, 10); widget.render(&painter, QPoint(10, 10)); painter.restore(); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (i < 20 || j < 20) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::black).rgb()); } } // Rotate painter 90 degrees. painter.save(); image.fill(QColor(Qt::red).rgb()); painter.rotate(90); widget.render(&painter); painter.restore(); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } // Translate and rotate. image.fill(QColor(Qt::red).rgb()); widget.resize(40, 10); painter.translate(10, 10); painter.rotate(90); widget.render(&painter); for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (i >= 10 && j >= 0 && j < 10) QCOMPARE(image.pixel(j, i), QColor(Qt::black).rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } } // Make sure QWidget::render does not modify the render hints set on the painter. painter.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform | QPainter::NonCosmeticDefaultPen | QPainter::TextAntialiasing); QPainter::RenderHints oldRenderHints = painter.renderHints(); widget.render(&painter); QCOMPARE(painter.renderHints(), oldRenderHints); } void tst_QWidget::render_task188133() { QMainWindow mainWindow; #if defined(QT3_SUPPORT) mainWindow.setCentralWidget(new Q3TextEdit); #endif // Make sure QWidget::render does not trigger QWidget::repaint/update // and asserts for Qt::WA_WState_Created. QPixmap pixmap = QPixmap::grabWidget(&mainWindow); } void tst_QWidget::render_task211796() { class MyWidget : public QWidget { void resizeEvent(QResizeEvent *) { QPixmap pixmap(size()); render(&pixmap); } }; { // Please don't die in a resize recursion. MyWidget widget; widget.resize(200, 200); widget.show(); } { // Same check with a deeper hierarchy. QWidget widget; widget.show(); QWidget child(&widget); MyWidget grandChild; grandChild.setParent(&child); grandChild.resize(100, 100); child.show(); } } void tst_QWidget::render_task217815() { // Make sure we don't change the size of the widget when calling // render() and the widget has an explicit size set. // This was a problem on Windows because we called createWinId(), // which in turn enforced the size to be bigger than the smallest // possible native window size (which is (115,something) on WinXP). QWidget widget; const QSize explicitSize(80, 20); widget.resize(explicitSize); QCOMPARE(widget.size(), explicitSize); QPixmap pixmap(explicitSize); widget.render(&pixmap); QCOMPARE(widget.size(), explicitSize); } void tst_QWidget::render_windowOpacity() { #ifdef Q_OS_WINCE QSKIP("Window Opacity is not supported on Windows CE", SkipAll); #endif const qreal opacity = 0.5; { // Check that the painter opacity effects the widget drawing. QWidget topLevel; QWidget child(&topLevel); child.resize(50, 50); child.setPalette(Qt::red); child.setAutoFillBackground(true); QPixmap expected(child.size()); #ifdef Q_WS_X11 if (expected.depth() < 24) { QSKIP("This test won't give correct results with dithered pixmaps", SkipAll); } #endif expected.fill(Qt::green); QPainter painter(&expected); painter.setOpacity(opacity); painter.fillRect(QRect(QPoint(0, 0), child.size()), Qt::red); painter.end(); QPixmap result(child.size()); result.fill(Qt::green); painter.begin(&result); painter.setOpacity(opacity); child.render(&painter); painter.end(); QCOMPARE(result, expected); } { // Combine the opacity set on the painter with the widget opacity. class MyWidget : public QWidget { public: void paintEvent(QPaintEvent *) { QPainter painter(this); painter.setOpacity(opacity); QCOMPARE(painter.opacity(), opacity); painter.fillRect(rect(), Qt::red); } qreal opacity; }; MyWidget widget; widget.resize(50, 50); widget.opacity = opacity; widget.setPalette(Qt::blue); widget.setAutoFillBackground(true); QPixmap expected(widget.size()); expected.fill(Qt::green); QPainter painter(&expected); painter.setOpacity(opacity); QPixmap pixmap(widget.size()); pixmap.fill(Qt::blue); QPainter pixmapPainter(&pixmap); pixmapPainter.setOpacity(opacity); pixmapPainter.fillRect(QRect(QPoint(), widget.size()), Qt::red); painter.drawPixmap(QPoint(), pixmap); painter.end(); QPixmap result(widget.size()); result.fill(Qt::green); painter.begin(&result); painter.setOpacity(opacity); widget.render(&painter); painter.end(); QCOMPARE(result, expected); } } void tst_QWidget::render_systemClip() { QWidget widget; widget.setPalette(Qt::blue); widget.resize(100, 100); QImage image(widget.size(), QImage::Format_RGB32); image.fill(QColor(Qt::red).rgb()); QPaintEngine *paintEngine = image.paintEngine(); QVERIFY(paintEngine); paintEngine->setSystemClip(QRegion(0, 0, 50, 50)); QPainter painter(&image); // Make sure we're using the same paint engine and has the right clip set. QCOMPARE(painter.paintEngine(), paintEngine); QCOMPARE(paintEngine->systemClip(), QRegion(0, 0, 50, 50)); // Translate painter outside system clip. painter.translate(50, 0); widget.render(&painter); #ifdef RENDER_DEBUG image.save("outside_systemclip.png"); #endif // All pixels should be red. for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } // Restore painter and refill image with red. image.fill(QColor(Qt::red).rgb()); painter.translate(-50, 0); // Set transform on the painter. QTransform transform; transform.shear(0, 1); painter.setTransform(transform); widget.render(&painter); #ifdef RENDER_DEBUG image.save("blue_triangle.png"); #endif // We should now have a blue triangle starting at scan line 1, and the rest should be red. // rrrrrrrrrr // brrrrrrrrr // bbrrrrrrrr // bbbrrrrrrr // bbbbrrrrrr // rrrrrrrrrr // ... #ifndef Q_WS_MAC for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (i < 50 && j < i) QCOMPARE(image.pixel(j, i), QColor(Qt::blue).rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } } #else // We don't paint directly on the image on the Mac, so we cannot do the pixel comparison // as above due to QPainter::SmoothPixmapTransform. We therefore need to generate an // expected image by first painting on a pixmap, and then draw the pixmap onto // the image using QPainter::SmoothPixmapTransform. Then we can compare pixels :) // The check is basically the same, except that it takes the smoothening into account. QPixmap pixmap(50, 50); const QRegion sysClip(0, 0, 50, 50); widget.render(&pixmap, QPoint(), sysClip); QImage expectedImage(widget.size(), QImage::Format_RGB32); expectedImage.fill(QColor(Qt::red).rgb()); expectedImage.paintEngine()->setSystemClip(sysClip); QPainter expectedImagePainter(&expectedImage); expectedImagePainter.setTransform(QTransform().shear(0, 1)); // NB! This is the important part (SmoothPixmapTransform). expectedImagePainter.setRenderHints(QPainter::SmoothPixmapTransform); expectedImagePainter.drawPixmap(QPoint(0, 0), pixmap); expectedImagePainter.end(); QCOMPARE(image, expectedImage); #endif } void tst_QWidget::render_systemClip2_data() { QTest::addColumn<bool>("autoFillBackground"); QTest::addColumn<bool>("usePaintEvent"); QTest::addColumn<QColor>("expectedColor"); QTest::newRow("Only auto-fill background") << true << false << QColor(Qt::blue); QTest::newRow("Only draw in paintEvent") << false << true << QColor(Qt::green); QTest::newRow("Auto-fill background and draw in paintEvent") << true << true << QColor(Qt::green); } void tst_QWidget::render_systemClip2() { QFETCH(bool, autoFillBackground); QFETCH(bool, usePaintEvent); QFETCH(QColor, expectedColor); Q_ASSERT_X(expectedColor != QColor(Qt::red), Q_FUNC_INFO, "Qt::red is the reference color for the image, pick another color"); class MyWidget : public QWidget { public: bool usePaintEvent; void paintEvent(QPaintEvent *) { if (usePaintEvent) QPainter(this).fillRect(rect(), Qt::green); } }; MyWidget widget; widget.usePaintEvent = usePaintEvent; widget.setPalette(Qt::blue); // NB! widget.setAutoFillBackground(autoFillBackground) won't do the // trick here since the widget is a top-level. The background is filled // regardless, unless Qt::WA_OpaquePaintEvent or Qt::WA_NoSystemBackground // is set. We therefore use the opaque attribute to turn off auto-fill. if (!autoFillBackground) widget.setAttribute(Qt::WA_OpaquePaintEvent); widget.resize(100, 100); QImage image(widget.size(), QImage::Format_RGB32); image.fill(QColor(Qt::red).rgb()); QPaintEngine *paintEngine = image.paintEngine(); QVERIFY(paintEngine); QRegion systemClip(QRegion(50, 0, 50, 10)); systemClip += QRegion(90, 10, 10, 40); paintEngine->setSystemClip(systemClip); // Render entire widget directly onto device. widget.render(&image); #ifdef RENDER_DEBUG image.save("systemclip_with_device.png"); #endif // All pixels within the system clip should now be // the expectedColor, and the rest should be red. for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (systemClip.contains(QPoint(j, i))) QCOMPARE(image.pixel(j, i), expectedColor.rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } } // Refill image with red. image.fill(QColor(Qt::red).rgb()); paintEngine->setSystemClip(systemClip); // Do the same with an untransformed painter. QPainter painter(&image); //Make sure we're using the same paint engine and has the right clip set. QCOMPARE(painter.paintEngine(), paintEngine); QCOMPARE(paintEngine->systemClip(), systemClip); widget.render(&painter); #ifdef RENDER_DEBUG image.save("systemclip_with_untransformed_painter.png"); #endif // All pixels within the system clip should now be // the expectedColor, and the rest should be red. for (int i = 0; i < image.height(); ++i) { for (int j = 0; j < image.width(); ++j) { if (systemClip.contains(QPoint(j, i))) QCOMPARE(image.pixel(j, i), expectedColor.rgb()); else QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } } } void tst_QWidget::render_systemClip3_data() { QTest::addColumn<QSize>("size"); QTest::addColumn<bool>("useSystemClip"); // Reference: http://en.wikipedia.org/wiki/Flag_of_Norway QTest::newRow("Norwegian Civil Flag") << QSize(220, 160) << false; QTest::newRow("Norwegian War Flag") << QSize(270, 160) << true; } // This test ensures that the current engine clip (systemClip + painter clip) // is preserved after QPainter::setClipRegion(..., Qt::ReplaceClip); void tst_QWidget::render_systemClip3() { QFETCH(QSize, size); QFETCH(bool, useSystemClip); // Calculate the inner/outer cross of the flag. QRegion outerCross(0, 0, size.width(), size.height()); outerCross -= QRect(0, 0, 60, 60); outerCross -= QRect(100, 0, size.width() - 100, 60); outerCross -= QRect(0, 100, 60, 60); outerCross -= QRect(100, 100, size.width() - 100, 60); QRegion innerCross(0, 0, size.width(), size.height()); innerCross -= QRect(0, 0, 70, 70); innerCross -= QRect(90, 0, size.width() - 90, 70); innerCross -= QRect(0, 90, 70, 70); innerCross -= QRect(90, 90, size.width() - 90, 70); const QRegion redArea(QRegion(0, 0, size.width(), size.height()) - outerCross); const QRegion whiteArea(outerCross - innerCross); const QRegion blueArea(innerCross); QRegion systemClip; // Okay, here's the image that should look like a Norwegian civil/war flag in the end. QImage flag(size, QImage::Format_ARGB32); flag.fill(QColor(Qt::transparent).rgba()); if (useSystemClip) { QPainterPath warClip(QPoint(size.width(), 0)); warClip.lineTo(size.width() - 110, 60); warClip.lineTo(size.width(), 80); warClip.lineTo(size.width() - 110, 100); warClip.lineTo(size.width(), 160); warClip.closeSubpath(); systemClip = QRegion(0, 0, size.width(), size.height()) - QRegion(warClip.toFillPolygon().toPolygon()); flag.paintEngine()->setSystemClip(systemClip); } QPainter painter(&flag); painter.fillRect(QRect(QPoint(), size), Qt::red); // Fill image background with red. painter.setClipRegion(outerCross); // Limit widget painting to inside the outer cross. // Here's the widget that's supposed to draw the inner/outer cross of the flag. // The outer cross (white) should be drawn when the background is auto-filled, and // the inner cross (blue) should be drawn in the paintEvent. class MyWidget : public QWidget { public: void paintEvent(QPaintEvent *) { QPainter painter(this); // Be evil and try to paint outside the outer cross. This should not be // possible since the shared painter is clipped to the outer cross. painter.setClipRect(0, 0, 60, 60, Qt::ReplaceClip); painter.fillRect(rect(), Qt::green); painter.setClipRegion(clip, Qt::ReplaceClip); painter.fillRect(rect(), Qt::blue); } QRegion clip; }; MyWidget widget; widget.clip = innerCross; widget.setFixedSize(size); widget.setPalette(Qt::white); widget.setAutoFillBackground(true); widget.render(&painter); #ifdef RENDER_DEBUG flag.save("flag.png"); #endif // Let's make sure we got a Norwegian flag. for (int i = 0; i < flag.height(); ++i) { for (int j = 0; j < flag.width(); ++j) { const QPoint pixel(j, i); const QRgb pixelValue = flag.pixel(pixel); if (useSystemClip && !systemClip.contains(pixel)) QCOMPARE(pixelValue, QColor(Qt::transparent).rgba()); else if (redArea.contains(pixel)) QCOMPARE(pixelValue, QColor(Qt::red).rgba()); else if (whiteArea.contains(pixel)) QCOMPARE(pixelValue, QColor(Qt::white).rgba()); else QCOMPARE(pixelValue, QColor(Qt::blue).rgba()); } } } void tst_QWidget::render_task252837() { QWidget widget; widget.resize(200, 200); QPixmap pixmap(widget.size()); QPainter painter(&pixmap); // Please do not crash. widget.render(&painter); } void tst_QWidget::render_worldTransform() { class MyWidget : public QWidget { public: void paintEvent(QPaintEvent *) { QPainter painter(this); // Make sure world transform is identity. QCOMPARE(painter.worldTransform(), QTransform()); // Make sure device transform is correct. const QPoint widgetOffset = geometry().topLeft(); QTransform expectedDeviceTransform = QTransform::fromTranslate(105, 5); expectedDeviceTransform.rotate(90); expectedDeviceTransform.translate(widgetOffset.x(), widgetOffset.y()); QCOMPARE(painter.deviceTransform(), expectedDeviceTransform); // Set new world transform. QTransform newWorldTransform = QTransform::fromTranslate(10, 10); newWorldTransform.rotate(90); painter.setWorldTransform(newWorldTransform); QCOMPARE(painter.worldTransform(), newWorldTransform); // Again, check device transform. expectedDeviceTransform.translate(10, 10); expectedDeviceTransform.rotate(90); QCOMPARE(painter.deviceTransform(), expectedDeviceTransform); painter.fillRect(QRect(0, 0, 20, 10), Qt::green); } }; MyWidget widget; widget.setFixedSize(100, 100); widget.setPalette(Qt::red); widget.setAutoFillBackground(true); MyWidget child; child.setParent(&widget); child.move(50, 50); child.setFixedSize(50, 50); child.setPalette(Qt::blue); child.setAutoFillBackground(true); QImage image(QSize(110, 110), QImage::Format_RGB32); image.fill(QColor(Qt::black).rgb()); QPainter painter(&image); painter.translate(105, 5); painter.rotate(90); const QTransform worldTransform = painter.worldTransform(); const QTransform deviceTransform = painter.deviceTransform(); // Render widgets onto image. widget.render(&painter); #ifdef RENDER_DEBUG image.save("render_worldTransform_image.png"); #endif // Ensure the transforms are unchanged after render. QCOMPARE(painter.worldTransform(), painter.worldTransform()); QCOMPARE(painter.deviceTransform(), painter.deviceTransform()); painter.end(); // Paint expected image. QImage expected(QSize(110, 110), QImage::Format_RGB32); expected.fill(QColor(Qt::black).rgb()); QPainter expectedPainter(&expected); expectedPainter.translate(105, 5); expectedPainter.rotate(90); expectedPainter.save(); expectedPainter.fillRect(widget.rect(),Qt::red); expectedPainter.translate(10, 10); expectedPainter.rotate(90); expectedPainter.fillRect(QRect(0, 0, 20, 10), Qt::green); expectedPainter.restore(); expectedPainter.translate(50, 50); expectedPainter.fillRect(child.rect(),Qt::blue); expectedPainter.translate(10, 10); expectedPainter.rotate(90); expectedPainter.fillRect(QRect(0, 0, 20, 10), Qt::green); expectedPainter.end(); #ifdef RENDER_DEBUG expected.save("render_worldTransform_expected.png"); #endif QCOMPARE(image, expected); } void tst_QWidget::setContentsMargins() { QLabel label("why does it always rain on me?"); QSize oldSize = label.sizeHint(); label.setFrameStyle(QFrame::Sunken | QFrame::Box); QSize newSize = label.sizeHint(); QVERIFY(oldSize != newSize); QLabel label2("why does it always rain on me?"); label2.show(); label2.setFrameStyle(QFrame::Sunken | QFrame::Box); QCOMPARE(newSize, label2.sizeHint()); QLabel label3("why does it always rain on me?"); label3.setFrameStyle(QFrame::Sunken | QFrame::Box); QCOMPARE(newSize, label3.sizeHint()); } void tst_QWidget::moveWindowInShowEvent_data() { QTest::addColumn<QPoint>("initial"); QTest::addColumn<QPoint>("position"); QPoint p = QApplication::desktop()->availableGeometry().topLeft(); QTest::newRow("1") << p << (p + QPoint(10, 10)); QTest::newRow("2") << (p + QPoint(10,10)) << p; } void tst_QWidget::moveWindowInShowEvent() { #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #endif QFETCH(QPoint, initial); QFETCH(QPoint, position); class MoveWindowInShowEventWidget : public QWidget { public: QPoint position; void showEvent(QShowEvent *) { move(position); } }; MoveWindowInShowEventWidget widget; widget.resize(QSize(qApp->desktop()->availableGeometry().size() / 3).expandedTo(QSize(1, 1))); // move to this position in showEvent() widget.position = position; // put the widget in it's starting position widget.move(initial); QCOMPARE(widget.pos(), initial); // show it widget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QTest::qWait(100); // it should have moved QCOMPARE(widget.pos(), position); } void tst_QWidget::repaintWhenChildDeleted() { #ifdef Q_WS_WIN if (QSysInfo::WindowsVersion & QSysInfo::WV_VISTA) { QTest::qWait(1000); } #endif ColorWidget w(0, Qt::red); #if !defined(Q_OS_WINCE) && !defined(Q_WS_S60) QPoint startPoint = QApplication::desktop()->availableGeometry(&w).topLeft(); startPoint.rx() += 50; startPoint.ry() += 50; w.setGeometry(QRect(startPoint, QSize(100, 100))); #else w.setGeometry(60, 60, 110, 110); #endif w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(10); QTRY_COMPARE(w.r, QRegion(w.rect())); w.r = QRegion(); { const QPoint tlwOffset = w.geometry().topLeft(); ColorWidget child(&w, Qt::blue); child.setGeometry(10, 10, 10, 10); child.show(); QTest::qWait(10); QTRY_COMPARE(child.r, QRegion(child.rect())); w.r = QRegion(); } QTest::qWait(10); QTRY_COMPARE(w.r, QRegion(10, 10, 10, 10)); } // task 175114 void tst_QWidget::hideOpaqueChildWhileHidden() { ColorWidget w(0, Qt::red); #if !defined(Q_OS_WINCE) && !defined(Q_WS_S60) QPoint startPoint = QApplication::desktop()->availableGeometry(&w).topLeft(); startPoint.rx() += 50; startPoint.ry() += 50; w.setGeometry(QRect(startPoint, QSize(100, 100))); #else w.setGeometry(60, 60, 110, 110); #endif ColorWidget child(&w, Qt::blue); child.setGeometry(10, 10, 80, 80); ColorWidget child2(&child, Qt::white); child2.setGeometry(10, 10, 60, 60); w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(10); QTRY_COMPARE(child2.r, QRegion(child2.rect())); child.r = QRegion(); child2.r = QRegion(); w.r = QRegion(); child.hide(); child2.hide(); QTest::qWait(100); QCOMPARE(w.r, QRegion(child.geometry())); child.show(); QTest::qWait(100); QCOMPARE(child.r, QRegion(child.rect())); QCOMPARE(child2.r, QRegion()); } void tst_QWidget::updateWhileMinimized() { #if defined(Q_OS_WINCE) || defined(Q_WS_QWS) QSKIP("This test doesn't make sense without support for showMinimized()", SkipAll); #endif UpdateWidget widget; // Filter out activation change and focus events to avoid update() calls in QWidget. widget.updateOnActivationChangeAndFocusIn = false; widget.reset(); widget.show(); QTest::qWaitForWindowShown(&widget); QApplication::processEvents(); QTRY_VERIFY(widget.numPaintEvents > 0); QTest::qWait(150); // Minimize window. widget.showMinimized(); QTest::qWait(110); widget.reset(); // The widget is not visible on the screen (but isVisible() still returns true). // Make sure update requests are discarded until the widget is shown again. widget.update(0, 0, 50, 50); QTest::qWait(10); QCOMPARE(widget.numPaintEvents, 0); // Restore window. widget.showNormal(); QTest::qWait(30); QTRY_COMPARE(widget.numPaintEvents, 1); QCOMPARE(widget.paintedRegion, QRegion(0, 0, 50, 50)); } #if defined(Q_WS_WIN) || defined(Q_WS_X11) class PaintOnScreenWidget: public QWidget { public: PaintOnScreenWidget(QWidget *parent = 0, Qt::WindowFlags f = 0) :QWidget(parent, f) { } #if defined(Q_WS_WIN) // This is the only way to enable PaintOnScreen on Windows. QPaintEngine * paintEngine () const {return 0;} #endif }; void tst_QWidget::alienWidgets() { qApp->setAttribute(Qt::AA_DontCreateNativeWidgetSiblings); QWidget parent; QWidget child(&parent); QWidget grandChild(&child); QWidget greatGrandChild(&grandChild); parent.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&parent); #endif // Verify that the WA_WState_Created attribute is set // and the top-level is the only native window. QVERIFY(parent.testAttribute(Qt::WA_WState_Created)); QVERIFY(parent.internalWinId()); QVERIFY(child.testAttribute(Qt::WA_WState_Created)); QVERIFY(!child.internalWinId()); QVERIFY(grandChild.testAttribute(Qt::WA_WState_Created)); QVERIFY(!grandChild.internalWinId()); QVERIFY(greatGrandChild.testAttribute(Qt::WA_WState_Created)); QVERIFY(!greatGrandChild.internalWinId()); // Enforce native windows all the way up in the parent hierarchy // if not WA_DontCreateNativeAncestors is set. grandChild.setAttribute(Qt::WA_DontCreateNativeAncestors); greatGrandChild.setAttribute(Qt::WA_NativeWindow); QVERIFY(greatGrandChild.internalWinId()); QVERIFY(grandChild.internalWinId()); QVERIFY(!child.internalWinId()); { // Ensure that hide() on an ancestor of a widget with // Qt::WA_DontCreateNativeAncestors still gets unmapped QWidget window; QWidget widget(&window); QWidget child(&widget); child.setAttribute(Qt::WA_NativeWindow); child.setAttribute(Qt::WA_DontCreateNativeAncestors); window.show(); QVERIFY(child.testAttribute(Qt::WA_Mapped)); widget.hide(); QVERIFY(!child.testAttribute(Qt::WA_Mapped)); } // Enforce a native window when calling QWidget::winId. QVERIFY(child.winId()); QVERIFY(child.internalWinId()); // Check that paint on screen widgets (incl. children) are native. PaintOnScreenWidget paintOnScreen(&parent); QWidget paintOnScreenChild(&paintOnScreen); paintOnScreen.show(); QVERIFY(paintOnScreen.testAttribute(Qt::WA_WState_Created)); QVERIFY(!paintOnScreen.testAttribute(Qt::WA_NativeWindow)); QVERIFY(!paintOnScreen.internalWinId()); QVERIFY(!paintOnScreenChild.testAttribute(Qt::WA_NativeWindow)); QVERIFY(!paintOnScreenChild.internalWinId()); paintOnScreen.setAttribute(Qt::WA_PaintOnScreen); QVERIFY(paintOnScreen.testAttribute(Qt::WA_NativeWindow)); QVERIFY(paintOnScreen.internalWinId()); QVERIFY(paintOnScreenChild.testAttribute(Qt::WA_NativeWindow)); QVERIFY(paintOnScreenChild.internalWinId()); // Check that widgets with the Qt::MSWindowsOwnDC attribute set // are native. QWidget msWindowsOwnDC(&parent, Qt::MSWindowsOwnDC); msWindowsOwnDC.show(); QVERIFY(msWindowsOwnDC.testAttribute(Qt::WA_WState_Created)); QVERIFY(msWindowsOwnDC.testAttribute(Qt::WA_NativeWindow)); QVERIFY(msWindowsOwnDC.internalWinId()); { // Enforce a native window when calling QWidget::handle() (on X11) or QWidget::getDC() (on Windows). QWidget widget(&parent); widget.show(); QVERIFY(widget.testAttribute(Qt::WA_WState_Created)); QVERIFY(!widget.internalWinId()); #ifdef Q_WS_X11 widget.handle(); #else widget.getDC(); #endif QVERIFY(widget.internalWinId()); } #ifdef Q_WS_X11 #ifndef QT_NO_XRENDER { // Enforce a native window when calling QWidget::x11PictureHandle(). QWidget widget(&parent); widget.show(); QVERIFY(widget.testAttribute(Qt::WA_WState_Created)); QVERIFY(!widget.internalWinId()); widget.x11PictureHandle(); QVERIFY(widget.internalWinId()); } #endif { // Make sure we don't create native windows when setting Qt::WA_X11NetWmWindowType attributes // on alien widgets (see task 194231). QWidget dummy; QVERIFY(dummy.winId()); QWidget widget(&dummy); widget.setAttribute(Qt::WA_X11NetWmWindowTypeToolBar); QVERIFY(!widget.internalWinId()); } #endif { // Make sure we create native ancestors when setting Qt::WA_PaintOnScreen before show(). QWidget topLevel; QWidget child(&topLevel); QWidget grandChild(&child); PaintOnScreenWidget greatGrandChild(&grandChild); greatGrandChild.setAttribute(Qt::WA_PaintOnScreen); QVERIFY(!child.internalWinId()); QVERIFY(!grandChild.internalWinId()); QVERIFY(!greatGrandChild.internalWinId()); topLevel.show(); QVERIFY(child.internalWinId()); QVERIFY(grandChild.internalWinId()); QVERIFY(greatGrandChild.internalWinId()); } { // Ensure that widgets reparented into Qt::WA_PaintOnScreen widgets become native. QWidget topLevel; QWidget *widget = new PaintOnScreenWidget(&topLevel); widget->setAttribute(Qt::WA_PaintOnScreen); QWidget *child = new QWidget; QWidget *dummy = new QWidget(child); QWidget *grandChild = new QWidget(child); QWidget *dummy2 = new QWidget(grandChild); child->setParent(widget); QVERIFY(!topLevel.internalWinId()); QVERIFY(!child->internalWinId()); QVERIFY(!dummy->internalWinId()); QVERIFY(!grandChild->internalWinId()); QVERIFY(!dummy2->internalWinId()); topLevel.show(); QVERIFY(topLevel.internalWinId()); QVERIFY(widget->testAttribute(Qt::WA_NativeWindow)); QVERIFY(child->internalWinId()); QVERIFY(child->testAttribute(Qt::WA_NativeWindow)); QVERIFY(!child->testAttribute(Qt::WA_PaintOnScreen)); QVERIFY(!dummy->internalWinId()); QVERIFY(!dummy->testAttribute(Qt::WA_NativeWindow)); QVERIFY(!grandChild->internalWinId()); QVERIFY(!grandChild->testAttribute(Qt::WA_NativeWindow)); QVERIFY(!dummy2->internalWinId()); QVERIFY(!dummy2->testAttribute(Qt::WA_NativeWindow)); } { // Ensure that ancestors of a Qt::WA_PaintOnScreen widget stay native // if they are re-created (typically in QWidgetPrivate::setParent_sys) (task 210822). QWidget window; QWidget child(&window); QWidget grandChild; grandChild.setWindowTitle("This causes the widget to be created"); PaintOnScreenWidget paintOnScreenWidget; paintOnScreenWidget.setAttribute(Qt::WA_PaintOnScreen); paintOnScreenWidget.setParent(&grandChild); grandChild.setParent(&child); window.show(); QVERIFY(window.internalWinId()); QVERIFY(child.internalWinId()); QVERIFY(child.testAttribute(Qt::WA_NativeWindow)); QVERIFY(grandChild.internalWinId()); QVERIFY(grandChild.testAttribute(Qt::WA_NativeWindow)); QVERIFY(paintOnScreenWidget.internalWinId()); QVERIFY(paintOnScreenWidget.testAttribute(Qt::WA_NativeWindow)); } { // Ensure that all siblings are native unless Qt::AA_DontCreateNativeWidgetSiblings is set. qApp->setAttribute(Qt::AA_DontCreateNativeWidgetSiblings, false); QWidget mainWindow; QWidget *toolBar = new QWidget(&mainWindow); QWidget *dockWidget = new QWidget(&mainWindow); QWidget *centralWidget = new QWidget(&mainWindow); QWidget *button = new QWidget(centralWidget); QWidget *mdiArea = new QWidget(centralWidget); QWidget *horizontalScroll = new QWidget(mdiArea); QWidget *verticalScroll = new QWidget(mdiArea); QWidget *viewport = new QWidget(mdiArea); viewport->setAttribute(Qt::WA_NativeWindow); mainWindow.show(); // Ensure that the viewport and its siblings are native: QVERIFY(verticalScroll->testAttribute(Qt::WA_NativeWindow)); QVERIFY(verticalScroll->testAttribute(Qt::WA_NativeWindow)); QVERIFY(horizontalScroll->testAttribute(Qt::WA_NativeWindow)); // Ensure that the mdi area and its siblings are native: QVERIFY(mdiArea->testAttribute(Qt::WA_NativeWindow)); QVERIFY(button->testAttribute(Qt::WA_NativeWindow)); // Ensure that the central widget and its siblings are native: QVERIFY(centralWidget->testAttribute(Qt::WA_NativeWindow)); QVERIFY(dockWidget->testAttribute(Qt::WA_NativeWindow)); QVERIFY(toolBar->testAttribute(Qt::WA_NativeWindow)); } } #endif // Q_WS_WIN / Q_WS_X11 class ASWidget : public QWidget { public: ASWidget(QSize sizeHint, QSizePolicy sizePolicy, bool layout, bool hfwLayout, QWidget *parent = 0) : QWidget(parent), mySizeHint(sizeHint) { setSizePolicy(sizePolicy); if (layout) { QSizePolicy sp = QSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); sp.setHeightForWidth(hfwLayout); QVBoxLayout *vbox = new QVBoxLayout; vbox->setMargin(0); vbox->addWidget(new ASWidget(sizeHint + QSize(30, 20), sp, false, false)); setLayout(vbox); } } QSize sizeHint() const { if (layout()) return layout()->totalSizeHint(); return mySizeHint; } int heightForWidth(int width) const { if (sizePolicy().hasHeightForWidth()) { return width * 2; } else { return -1; } } QSize mySizeHint; }; void tst_QWidget::adjustSize_data() { const int MagicW = 200; const int MagicH = 100; QTest::addColumn<QSize>("sizeHint"); QTest::addColumn<int>("hPolicy"); QTest::addColumn<int>("vPolicy"); QTest::addColumn<bool>("hfwSP"); QTest::addColumn<bool>("layout"); QTest::addColumn<bool>("hfwLayout"); QTest::addColumn<bool>("haveParent"); QTest::addColumn<QSize>("expectedSize"); QTest::newRow("1") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << false << false << false << QSize(5, qMax(6, MagicH)); QTest::newRow("2") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << true << false << false << false << QSize(5, qMax(10, MagicH)); QTest::newRow("3") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << false << false << QSize(35, 26); QTest::newRow("4") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << true << false << QSize(35, 70); QTest::newRow("5") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << false << false << false << QSize(100000, 100000); QTest::newRow("6") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << true << false << false << false << QSize(100000, 100000); QTest::newRow("7") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << false << false << QSize(100000, 100000); QTest::newRow("8") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << true << false << QSize(100000, 100000); QTest::newRow("9") << QSize(5, 6) << int(QSizePolicy::Expanding) << int(QSizePolicy::Minimum) << true << false << false << false << QSize(qMax(5, MagicW), 10); QTest::newRow("1c") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << false << false << true << QSize(5, 6); QTest::newRow("2c") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << true << false << false << true << QSize(5, 6 /* or 10 would be OK too, since hfw contradicts sizeHint() */); QTest::newRow("3c") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << false << true << QSize(35, 26); QTest::newRow("4c") << QSize(5, 6) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << true << true << QSize(35, 70); QTest::newRow("5c") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << false << false << true << QSize(40001, 30001); QTest::newRow("6c") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << true << false << false << true << QSize(40001, 30001 /* or 80002 would be OK too, since hfw contradicts sizeHint() */); QTest::newRow("7c") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << false << true << QSize(40001 + 30, 30001 + 20); QTest::newRow("8c") << QSize(40001, 30001) << int(QSizePolicy::Minimum) << int(QSizePolicy::Expanding) << false << true << true << true << QSize(40001 + 30, 80002 + 60); QTest::newRow("9c") << QSize(5, 6) << int(QSizePolicy::Expanding) << int(QSizePolicy::Minimum) << true << false << false << true << QSize(5, 6); } void tst_QWidget::adjustSize() { QFETCH(QSize, sizeHint); QFETCH(int, hPolicy); QFETCH(int, vPolicy); QFETCH(bool, hfwSP); QFETCH(bool, layout); QFETCH(bool, hfwLayout); QFETCH(bool, haveParent); QFETCH(QSize, expectedSize); QWidget *parent = new QWidget; QSizePolicy sp = QSizePolicy(QSizePolicy::Policy(hPolicy), QSizePolicy::Policy(vPolicy)); sp.setHeightForWidth(hfwSP); QWidget *child = new ASWidget(sizeHint, sp, layout, hfwLayout, haveParent ? parent : 0); child->resize(123, 456); child->adjustSize(); if (expectedSize == QSize(100000, 100000)) { QVERIFY(child->size().width() < sizeHint.width()); QVERIFY(child->size().height() < sizeHint.height()); } else { #if defined (Q_OS_WINCE) if (!haveParent) { const QRect& desktopRect = qApp->desktop()->availableGeometry(); expectedSize.setWidth(qMin(expectedSize.width(), desktopRect.width())); expectedSize.setHeight(qMin(expectedSize.height(), desktopRect.height())); } #endif QCOMPARE(child->size(), expectedSize); } delete parent; } class TestLayout : public QVBoxLayout { Q_OBJECT public: TestLayout(QWidget *w = 0) : QVBoxLayout(w) { invalidated = false; } void invalidate() { invalidated = true; } bool invalidated; }; void tst_QWidget::updateGeometry_data() { QTest::addColumn<QSize>("minSize"); QTest::addColumn<bool>("shouldInvalidate"); QTest::addColumn<QSize>("maxSize"); QTest::addColumn<bool>("shouldInvalidate2"); QTest::addColumn<int>("verticalSizePolicy"); QTest::addColumn<bool>("shouldInvalidate3"); QTest::addColumn<bool>("setVisible"); QTest::addColumn<bool>("shouldInvalidate4"); QTest::newRow("setMinimumSize") << QSize(100, 100) << true << QSize() << false << int(QSizePolicy::Preferred) << false << true << false; QTest::newRow("setMaximumSize") << QSize() << false << QSize(100, 100) << true << int(QSizePolicy::Preferred) << false << true << false; QTest::newRow("setMinimumSize, then maximumSize to a different size") << QSize(100, 100) << true << QSize(300, 300) << true << int(QSizePolicy::Preferred) << false << true << false; QTest::newRow("setMinimumSize, then maximumSize to the same size") << QSize(100, 100) << true << QSize(100, 100) << true << int(QSizePolicy::Preferred) << false << true << false; QTest::newRow("setMinimumSize, then maximumSize to the same size and then hide it") << QSize(100, 100) << true << QSize(100, 100) << true << int(QSizePolicy::Preferred) << false << false << true; QTest::newRow("Change sizePolicy") << QSize() << false << QSize() << false << int(QSizePolicy::Minimum) << true << true << false; } void tst_QWidget::updateGeometry() { QFETCH(QSize, minSize); QFETCH(bool, shouldInvalidate); QFETCH(QSize, maxSize); QFETCH(bool, shouldInvalidate2); QFETCH(int, verticalSizePolicy); QFETCH(bool, shouldInvalidate3); QFETCH(bool, setVisible); QFETCH(bool, shouldInvalidate4); QWidget parent; parent.resize(200, 200); TestLayout *lout = new TestLayout(); parent.setLayout(lout); QWidget *child = new QWidget(&parent); lout->addWidget(child); parent.show(); QApplication::processEvents(); lout->invalidated = false; if (minSize.isValid()) child->setMinimumSize(minSize); QCOMPARE(lout->invalidated, shouldInvalidate); lout->invalidated = false; if (maxSize.isValid()) child->setMaximumSize(maxSize); QCOMPARE(lout->invalidated, shouldInvalidate2); lout->invalidated = false; child->setSizePolicy(QSizePolicy(QSizePolicy::Preferred, (QSizePolicy::Policy)verticalSizePolicy)); if (shouldInvalidate3) QCOMPARE(lout->invalidated, true); lout->invalidated = false; if (!setVisible) child->setVisible(false); QCOMPARE(lout->invalidated, shouldInvalidate4); } void tst_QWidget::sendUpdateRequestImmediately() { #ifdef Q_WS_MAC if (!QApplicationPrivate::graphicsSystem()) QSKIP("We only send update requests on the Mac when passing -graphicssystem", SkipAll); #endif UpdateWidget updateWidget; updateWidget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&updateWidget); #endif qApp->processEvents(); #ifdef Q_WS_QWS QApplication::sendPostedEvents(); //glib workaround #endif updateWidget.reset(); QCOMPARE(updateWidget.numUpdateRequestEvents, 0); updateWidget.repaint(); QCOMPARE(updateWidget.numUpdateRequestEvents, 1); } class RedirectedWidget : public QWidget { protected: void paintEvent(QPaintEvent *) { // Verify that the widget has a redirection set. The widget is redirected to // the backing store on all platforms using it; otherwise to itself if the wrect // does not start in (0, 0) or it has a mask set. QPaintDevice *oldRedirection = QPainter::redirected(this); #ifndef Q_WS_MAC QVERIFY(oldRedirection); #endif QImage image(size(), QImage::Format_RGB32); image.fill(Qt::blue); { QPainter painter(this); QCOMPARE(painter.device(), static_cast<QPaintDevice *>(this)); } QPainter::setRedirected(this, &image); QCOMPARE(QPainter::redirected(this), static_cast<QPaintDevice *>(&image)); QPainter painter(this); painter.fillRect(rect(), Qt::red); QPainter::restoreRedirected(this); QCOMPARE(QPainter::redirected(this), oldRedirection); for (int i = 0; i < image.height(); ++i) for (int j = 0; j < image.width(); ++j) QCOMPARE(image.pixel(j, i), QColor(Qt::red).rgb()); } }; // Test to make sure we're compatible in the particular case where QPainter::setRedirected // actually works. It has been broken for all other cases since Qt 4.1.4 (backing store). // QWidget::render is the modern and more powerful way of doing the same. void tst_QWidget::painterRedirection() { RedirectedWidget widget; // Set FramelessWindowHint and mask to trigger internal painter redirection on the Mac. widget.setWindowFlags(widget.windowFlags() | Qt::FramelessWindowHint); widget.setMask(QRect(10, 10, 50, 50)); widget.setFixedSize(100, 200); widget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QPixmap pixmap(widget.size()); QPainter::setRedirected(&widget, &pixmap, QPoint()); widget.repaint(); QCOMPARE(QPainter::redirected(&widget), static_cast<QPaintDevice *>(&pixmap)); } void tst_QWidget::doubleRepaint() { #ifdef Q_OS_IRIX QSKIP("4DWM issues on IRIX makes this test fail", SkipAll); #elif defined(Q_WS_MAC) if (!macHasAccessToWindowsServer()) QSKIP("Not having window server access causes the wrong number of repaints to be issues", SkipAll); #endif UpdateWidget widget; widget.setFocusPolicy(Qt::StrongFocus); // Filter out activation change and focus events to avoid update() calls in QWidget. widget.updateOnActivationChangeAndFocusIn = false; // Show: 1 repaint int expectedRepaints = 1; widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(10); QTRY_COMPARE(widget.numPaintEvents, expectedRepaints); widget.numPaintEvents = 0; // Minmize: Should not trigger a repaint. widget.showMinimized(); QTest::qWait(10); QCOMPARE(widget.numPaintEvents, 0); widget.numPaintEvents = 0; // Restore: Should not trigger a repaint. widget.showNormal(); QTest::qWaitForWindowShown(&widget); QTest::qWait(10); QCOMPARE(widget.numPaintEvents, 0); } #ifndef Q_WS_MAC // This test only makes sense on the Mac when passing -graphicssystem. void tst_QWidget::resizeInPaintEvent() { QWidget window; UpdateWidget widget(&window); window.show(); QTest::qWaitForWindowShown(&window); QTRY_VERIFY(widget.numPaintEvents > 0); widget.reset(); QCOMPARE(widget.numPaintEvents, 0); widget.resizeInPaintEvent = true; // This will call resize in the paintEvent, which in turn will call // invalidateBuffer() and a new update request should be posted. widget.repaint(); QCOMPARE(widget.numPaintEvents, 1); widget.numPaintEvents = 0; QTest::qWait(10); // Make sure the resize triggers another update. QTRY_COMPARE(widget.numPaintEvents, 1); } void tst_QWidget::opaqueChildren() { QWidget widget; widget.resize(200, 200); QWidget child(&widget); child.setGeometry(-700, -700, 200, 200); QWidget grandChild(&child); grandChild.resize(200, 200); QWidget greatGrandChild(&grandChild); greatGrandChild.setGeometry(50, 50, 200, 200); greatGrandChild.setPalette(Qt::red); greatGrandChild.setAutoFillBackground(true); // Opaque child widget. widget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QTest::qWait(100); // Child, grandChild and greatGrandChild are outside the ancestor clip. QRegion expectedOpaqueRegion(50, 50, 150, 150); QCOMPARE(qt_widget_private(&grandChild)->getOpaqueChildren(), expectedOpaqueRegion); // Now they are all inside the ancestor clip. child.setGeometry(50, 50, 150, 150); QCOMPARE(qt_widget_private(&grandChild)->getOpaqueChildren(), expectedOpaqueRegion); // Set mask on greatGrandChild. const QRegion mask(10, 10, 50, 50); greatGrandChild.setMask(mask); expectedOpaqueRegion &= mask.translated(50, 50); QCOMPARE(qt_widget_private(&grandChild)->getOpaqueChildren(), expectedOpaqueRegion); // Make greatGrandChild "transparent". greatGrandChild.setAutoFillBackground(false); QCOMPARE(qt_widget_private(&grandChild)->getOpaqueChildren(), QRegion()); } #endif class MaskSetWidget : public QWidget { Q_OBJECT public: MaskSetWidget(QWidget* p =0) : QWidget(p) {} void paintEvent(QPaintEvent* event) { QPainter p(this); paintedRegion += event->region(); foreach(QRect r, event->region().rects()) p.fillRect(r, Qt::red); } void resizeEvent(QResizeEvent*) { setMask(QRegion(QRect(0, 0, width(), 10).normalized())); } QRegion paintedRegion; public slots: void resizeDown() { setGeometry(QRect(0, 50, 50, 50)); } void resizeUp() { setGeometry(QRect(0, 50, 150, 50)); } }; void tst_QWidget::setMaskInResizeEvent() { UpdateWidget w; w.reset(); w.resize(200, 200); w.setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); w.raise(); MaskSetWidget testWidget(&w); testWidget.setGeometry(0, 0, 100, 100); testWidget.setMask(QRegion(QRect(0,0,100,10))); testWidget.show(); w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(30); QTRY_VERIFY(w.numPaintEvents > 0); w.reset(); testWidget.paintedRegion = QRegion(); QTimer::singleShot(0, &testWidget, SLOT(resizeDown())); QTest::qWait(100); QRegion expectedParentUpdate(0, 0, 100, 10); // Old testWidget area. expectedParentUpdate += testWidget.geometry(); // New testWidget area. QCOMPARE(w.paintedRegion, expectedParentUpdate); QCOMPARE(testWidget.paintedRegion, testWidget.mask()); testWidget.paintedRegion = QRegion(); // Now resize the widget again, but in the oposite direction QTimer::singleShot(0, &testWidget, SLOT(resizeUp())); QTest::qWait(100); QTRY_COMPARE(testWidget.paintedRegion, testWidget.mask()); } class MoveInResizeWidget : public QWidget { Q_OBJECT public: MoveInResizeWidget(QWidget* p = 0) : QWidget(p) { setWindowFlags(Qt::FramelessWindowHint); } void resizeEvent(QResizeEvent*) { move(QPoint(100,100)); static bool firstTime = true; if (firstTime) QTimer::singleShot(250, this, SLOT(resizeMe())); firstTime = false; } public slots: void resizeMe() { resize(100, 100); } }; void tst_QWidget::moveInResizeEvent() { MoveInResizeWidget testWidget; testWidget.setGeometry(50, 50, 200, 200); testWidget.show(); QTest::qWaitForWindowShown(&testWidget); QTest::qWait(300); QRect expectedGeometry(100,100, 100, 100); QTRY_COMPARE(testWidget.geometry(), expectedGeometry); } #if defined(Q_WS_WIN) || defined(Q_WS_X11) void tst_QWidget::immediateRepaintAfterShow() { UpdateWidget widget; widget.show(); qApp->processEvents(); // On X11 in particular, we are now waiting for a MapNotify event before // syncing the backing store. However, if someone request a repaint() // we must repaint immediately regardless of the current state. widget.numPaintEvents = 0; widget.repaint(); QCOMPARE(widget.numPaintEvents, 1); } void tst_QWidget::immediateRepaintAfterInvalidateBuffer() { QWidget *widget = new UpdateWidget; widget->show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(widget); #endif QTest::qWait(200); static_cast<UpdateWidget *>(widget)->numPaintEvents = 0; // Marks the area covered by the widget as dirty in the backing store and // posts an UpdateRequest event. qt_widget_private(widget)->invalidateBuffer(widget->rect()); QCOMPARE(static_cast<UpdateWidget *>(widget)->numPaintEvents, 0); // The entire widget is already dirty, but this time we want to update immediately // by calling repaint(), and thus we have to repaint the widget and not wait for // the UpdateRequest to be sent when we get back to the event loop. widget->repaint(); QCOMPARE(static_cast<UpdateWidget *>(widget)->numPaintEvents, 1); delete widget; } #endif void tst_QWidget::effectiveWinId() { QWidget parent; QWidget child(&parent); // Shouldn't crash. QVERIFY(!parent.effectiveWinId()); QVERIFY(!child.effectiveWinId()); parent.show(); QVERIFY(parent.effectiveWinId()); QVERIFY(child.effectiveWinId()); } class CustomWidget : public QWidget { public: mutable int metricCallCount; CustomWidget(QWidget *parent = 0) : QWidget(parent), metricCallCount(0) {} virtual int metric(PaintDeviceMetric metric) const { ++metricCallCount; return QWidget::metric(metric); } }; void tst_QWidget::customDpi() { QWidget *topLevel = new QWidget; CustomWidget *custom = new CustomWidget(topLevel); QWidget *child = new QWidget(custom); custom->metricCallCount = 0; topLevel->logicalDpiX(); QCOMPARE(custom->metricCallCount, 0); custom->logicalDpiX(); QCOMPARE(custom->metricCallCount, 1); child->logicalDpiX(); #ifdef Q_WS_S60 // QWidget::metric is not recursive on Symbian QCOMPARE(custom->metricCallCount, 1); #else QCOMPARE(custom->metricCallCount, 2); #endif delete topLevel; } void tst_QWidget::customDpiProperty() { QWidget *topLevel = new QWidget; QWidget *middle = new CustomWidget(topLevel); QWidget *child = new QWidget(middle); const int initialDpiX = topLevel->logicalDpiX(); const int initialDpiY = topLevel->logicalDpiY(); middle->setProperty("_q_customDpiX", 300); middle->setProperty("_q_customDpiY", 400); QCOMPARE(topLevel->logicalDpiX(), initialDpiX); QCOMPARE(topLevel->logicalDpiY(), initialDpiY); QCOMPARE(middle->logicalDpiX(), 300); QCOMPARE(middle->logicalDpiY(), 400); QCOMPARE(child->logicalDpiX(), 300); QCOMPARE(child->logicalDpiY(), 400); middle->setProperty("_q_customDpiX", QVariant()); middle->setProperty("_q_customDpiY", QVariant()); QCOMPARE(topLevel->logicalDpiX(), initialDpiX); QCOMPARE(topLevel->logicalDpiY(), initialDpiY); QCOMPARE(middle->logicalDpiX(), initialDpiX); QCOMPARE(middle->logicalDpiY(), initialDpiY); QCOMPARE(child->logicalDpiX(), initialDpiX); QCOMPARE(child->logicalDpiY(), initialDpiY); delete topLevel; } void tst_QWidget::quitOnCloseAttribute() { QWidget w; QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), true); w.setAttribute(Qt::WA_QuitOnClose, false); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::Tool); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::Popup); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::ToolTip); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::SplashScreen); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::SubWindow); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); w.setAttribute(Qt::WA_QuitOnClose); w.setWindowFlags(Qt::Dialog); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), true); w.show(); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), true); w.setWindowFlags(Qt::Tool); QCOMPARE(w.testAttribute(Qt::WA_QuitOnClose), false); } void tst_QWidget::moveRect() { QWidget widget; widget.setUpdatesEnabled(false); QWidget child(&widget); child.setUpdatesEnabled(false); child.setAttribute(Qt::WA_OpaquePaintEvent); widget.show(); QTest::qWait(200); child.move(10, 10); // Don't crash. } #ifdef Q_WS_WIN class GDIWidget : public QDialog { public: GDIWidget() { setAttribute(Qt::WA_PaintOnScreen); } QPaintEngine *paintEngine() const { return 0; } void paintEvent(QPaintEvent *) { HDC hdc = getDC(); SelectObject(hdc, CreateSolidBrush(RGB(255, 0, 0))); Rectangle(hdc, 0, 0, 10, 10); releaseDC(hdc); QImage im = QPixmap::grabWindow(winId(), 0, 0, width(), height()).toImage(); color = im.pixel(1, 1); accept(); } QSize sizeHint() const { return QSize(400, 300); } QColor color; }; void tst_QWidget::gdiPainting() { GDIWidget w; w.exec(); QCOMPARE(w.color, QColor(255, 0, 0)); } void tst_QWidget::paintOnScreenPossible() { QWidget w1; w1.setAttribute(Qt::WA_PaintOnScreen); QVERIFY(!w1.testAttribute(Qt::WA_PaintOnScreen)); GDIWidget w2; w2.setAttribute(Qt::WA_PaintOnScreen); QVERIFY(w2.testAttribute(Qt::WA_PaintOnScreen)); } #endif void tst_QWidget::reparentStaticWidget() { QWidget window1; QWidget *child = new QWidget(&window1); child->setPalette(Qt::red); child->setAutoFillBackground(true); child->setAttribute(Qt::WA_StaticContents); child->resize(100, 100); QWidget *grandChild = new QWidget(child); grandChild->setPalette(Qt::blue); grandChild->setAutoFillBackground(true); grandChild->resize(50, 50); grandChild->setAttribute(Qt::WA_StaticContents); window1.show(); QTest::qWaitForWindowShown(&window1); QWidget window2; window2.show(); QTest::qWaitForWindowShown(&window2); QTest::qWait(20); // Reparent into another top-level. child->setParent(&window2); child->show(); // Please don't crash. window1.resize(window1.size() + QSize(2, 2)); QTest::qWait(20); // Make sure we move all static children even though // the reparented widget itself is non-static. child->setAttribute(Qt::WA_StaticContents, false); child->setParent(&window1); child->show(); // Please don't crash. window2.resize(window2.size() + QSize(2, 2)); QTest::qWait(20); child->setParent(0); child->show(); QTest::qWait(20); // Please don't crash. child->resize(child->size() + QSize(2, 2)); window2.resize(window2.size() + QSize(2, 2)); QTest::qWait(20); QWidget *siblingOfGrandChild = new QWidget(child); siblingOfGrandChild->show(); QTest::qWait(20); // Nothing should happen when reparenting within the same top-level. grandChild->setParent(siblingOfGrandChild); grandChild->show(); QTest::qWait(20); QWidget paintOnScreen; paintOnScreen.setAttribute(Qt::WA_PaintOnScreen); paintOnScreen.show(); QTest::qWaitForWindowShown(&paintOnScreen); QTest::qWait(20); child->setParent(&paintOnScreen); child->show(); QTest::qWait(20); // Please don't crash. paintOnScreen.resize(paintOnScreen.size() + QSize(2, 2)); QTest::qWait(20); } void tst_QWidget::QTBUG6883_reparentStaticWidget2() { QMainWindow mw; QDockWidget *one = new QDockWidget("one", &mw); mw.addDockWidget(Qt::LeftDockWidgetArea, one , Qt::Vertical); QWidget *child = new QWidget(); child->setPalette(Qt::red); child->setAutoFillBackground(true); child->setAttribute(Qt::WA_StaticContents); child->resize(100, 100); one->setWidget(child); QToolBar *mainTools = mw.addToolBar("Main Tools"); mainTools->addWidget(new QLineEdit); mw.show(); QTest::qWaitForWindowShown(&mw); one->setFloating(true); QTest::qWait(20); //do not crash } #ifdef Q_WS_QWS void tst_QWidget::updateOutsideSurfaceClip() { UpdateWidget widget; widget.setWindowFlags(Qt::FramelessWindowHint); widget.resize(100, 100); widget.raise(); widget.show(); QTest::qWait(200); widget.reset(); // Move widget partially outside buffer and change the surface clip. widget.move(-50, 0); QTest::qWait(100); // Update region is outside the surface clip and should not trigger a repaint. widget.update(0, 0, 20, 20); QTest::qWait(100); QCOMPARE(widget.numPaintEvents, 0); // Now, move the widget back so that the update region is inside the clip // and make sure we get a repaint of the dirty area. widget.move(0, 0); QTest::qWait(100); QCOMPARE(widget.numPaintEvents, 1); QCOMPARE(widget.paintedRegion, QRegion(0, 0, 20, 20)); } #endif class ColorRedWidget : public QWidget { public: ColorRedWidget(QWidget *parent = 0) : QWidget(parent, Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::ToolTip) { } void paintEvent(QPaintEvent *) { QPainter p(this); p.fillRect(rect(),Qt::red); } }; void tst_QWidget::translucentWidget() { QPixmap pm(16,16); pm.fill(Qt::red); ColorRedWidget label; label.setFixedSize(16,16); label.setAttribute(Qt::WA_TranslucentBackground); label.move(qApp->desktop()->availableGeometry().topLeft()); label.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&label); #endif QTest::qWait(200); QPixmap widgetSnapshot; #ifdef Q_WS_WIN QWidget *desktopWidget = QApplication::desktop()->screen(0); if (QSysInfo::windowsVersion() >= QSysInfo::WV_VISTA) widgetSnapshot = QPixmap::grabWindow(desktopWidget->winId(), 0,0, label.width(), label.height()); else #endif widgetSnapshot = QPixmap::grabWindow(label.winId()); QImage actual = widgetSnapshot.toImage().convertToFormat(QImage::Format_RGB32); QImage expected = pm.toImage().convertToFormat(QImage::Format_RGB32); QCOMPARE(actual.size(),expected.size()); QCOMPARE(actual,expected); } class MaskResizeTestWidget : public QWidget { Q_OBJECT public: MaskResizeTestWidget(QWidget* p =0) : QWidget(p) { setMask(QRegion(QRect(0, 0, 100, 100).normalized())); } void paintEvent(QPaintEvent* event) { QPainter p(this); paintedRegion += event->region(); foreach(QRect r, event->region().rects()) p.fillRect(r, Qt::red); } QRegion paintedRegion; public slots: void enlargeMask() { QRegion newMask(QRect(0, 0, 150, 150).normalized()); setMask(newMask); } void shrinkMask() { QRegion newMask(QRect(0, 0, 50, 50).normalized()); setMask(newMask); } }; void tst_QWidget::setClearAndResizeMask() { UpdateWidget topLevel; topLevel.resize(150, 150); topLevel.show(); QTest::qWaitForWindowShown(&topLevel); QTRY_VERIFY(topLevel.numPaintEvents > 0); topLevel.reset(); // Mask top-level widget const QRegion topLevelMask(0, 0, 100, 100, QRegion::Ellipse); topLevel.setMask(topLevelMask); QCOMPARE(topLevel.mask(), topLevelMask); #if defined(Q_WS_WIN) || defined(Q_WS_X11) // We don't control what's happening on other platforms. // and ensure that the top-level doesn't get any update. QCOMPARE(topLevel.numPaintEvents, 0); #endif topLevel.reset(); // Clear top-level mask topLevel.clearMask(); QCOMPARE(topLevel.mask(), QRegion()); QTest::qWait(10); QRegion outsideOldMask(topLevel.rect()); outsideOldMask -= topLevelMask; #if defined(Q_WS_WIN) || defined(Q_WS_X11) // We don't control what's happening on other platforms. // and ensure that the top-level gets an update for the area outside the old mask. QTRY_VERIFY(topLevel.numPaintEvents > 0); QTRY_COMPARE(topLevel.paintedRegion, outsideOldMask); #endif UpdateWidget child(&topLevel); child.setAutoFillBackground(true); // NB! Opaque child. child.setPalette(Qt::red); child.resize(100, 100); child.show(); QTest::qWait(10); child.reset(); topLevel.reset(); // Mask child widget with a mask that is smaller than the rect const QRegion childMask(0, 0, 50, 50); child.setMask(childMask); QTRY_COMPARE(child.mask(), childMask); QTest::qWait(50); // and ensure that the child widget doesn't get any update. #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (child.internalWinId()) QCOMPARE(child.numPaintEvents, 1); else #endif QCOMPARE(child.numPaintEvents, 0); // and the parent widget gets an update for the newly exposed area. QTRY_COMPARE(topLevel.numPaintEvents, 1); QRegion expectedParentExpose(child.rect()); expectedParentExpose -= childMask; QCOMPARE(topLevel.paintedRegion, expectedParentExpose); child.reset(); topLevel.reset(); // Clear child widget mask child.clearMask(); QTRY_COMPARE(child.mask(), QRegion()); QTest::qWait(10); // and ensure that that the child widget gets an update for the area outside the old mask. QTRY_COMPARE(child.numPaintEvents, 1); outsideOldMask = child.rect(); #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (!child.internalWinId()) #endif outsideOldMask -= childMask; QCOMPARE(child.paintedRegion, outsideOldMask); // and the parent widget doesn't get any update. QCOMPARE(topLevel.numPaintEvents, 0); child.reset(); topLevel.reset(); // Mask child widget with a mask that is bigger than the rect child.setMask(QRegion(0, 0, 1000, 1000)); QTest::qWait(100); #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (child.internalWinId()) QTRY_COMPARE(child.numPaintEvents, 1); else #endif // and ensure that we don't get any updates at all. QTRY_COMPARE(child.numPaintEvents, 0); QCOMPARE(topLevel.numPaintEvents, 0); // ...and the same applies when clearing the mask. child.clearMask(); QTest::qWait(100); #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (child.internalWinId()) QTRY_VERIFY(child.numPaintEvents > 0); else #endif QCOMPARE(child.numPaintEvents, 0); QCOMPARE(topLevel.numPaintEvents, 0); QWidget resizeParent; MaskResizeTestWidget resizeChild(&resizeParent); resizeParent.resize(300,300); resizeParent.raise(); resizeParent.setWindowFlags(Qt::WindowStaysOnTopHint); resizeChild.setGeometry(50,50,200,200); QPalette pal = resizeParent.palette(); pal.setColor(QPalette::Window, QColor(Qt::white)); resizeParent.setPalette(pal); resizeParent.show(); QTest::qWaitForWindowShown(&resizeParent); // Disable the size grip on the Mac; otherwise it'll be included when grabbing the window. resizeParent.setFixedSize(resizeParent.size()); resizeChild.show(); QTest::qWait(100); resizeChild.paintedRegion = QRegion(); QTimer::singleShot(100, &resizeChild, SLOT(shrinkMask())); QTest::qWait(200); #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (child.internalWinId()) QTRY_COMPARE(resizeChild.paintedRegion, resizeChild.mask()); else #endif QTRY_COMPARE(resizeChild.paintedRegion, QRegion()); resizeChild.paintedRegion = QRegion(); const QRegion oldMask = resizeChild.mask(); QTimer::singleShot(0, &resizeChild, SLOT(enlargeMask())); QTest::qWait(100); #ifdef Q_WS_MAC // Mac always issues a full update when calling setMask, and we cannot force it to not do so. if (child.internalWinId()) QTRY_COMPARE(resizeChild.paintedRegion, resizeChild.mask()); else #endif QTRY_COMPARE(resizeChild.paintedRegion, resizeChild.mask() - oldMask); } void tst_QWidget::maskedUpdate() { UpdateWidget topLevel; topLevel.resize(200, 200); const QRegion topLevelMask(50, 50, 70, 70); topLevel.setMask(topLevelMask); UpdateWidget child(&topLevel); child.setGeometry(20, 20, 180, 180); const QRegion childMask(60, 60, 30, 30); child.setMask(childMask); UpdateWidget grandChild(&child); grandChild.setGeometry(50, 50, 100, 100); const QRegion grandChildMask(20, 20, 10, 10); grandChild.setMask(grandChildMask); topLevel.show(); QTest::qWaitForWindowShown(&topLevel); QTRY_VERIFY(topLevel.numPaintEvents > 0); #define RESET_WIDGETS \ topLevel.reset(); \ child.reset(); \ grandChild.reset(); #define CLEAR_MASK(widget) \ widget.clearMask(); \ QTest::qWait(100); \ RESET_WIDGETS; // All widgets are transparent at this point, so any call to update() will result // in composition, i.e. the update propagates to ancestors and children. // TopLevel update. RESET_WIDGETS; topLevel.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, topLevelMask); QTRY_COMPARE(child.paintedRegion, childMask); QTRY_COMPARE(grandChild.paintedRegion, grandChildMask); // Child update. RESET_WIDGETS; child.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, childMask.translated(child.pos())); QTRY_COMPARE(child.paintedRegion, childMask); QTRY_COMPARE(grandChild.paintedRegion, grandChildMask); // GrandChild update. RESET_WIDGETS; grandChild.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, grandChildMask.translated(grandChild.mapTo(&topLevel, QPoint()))); QTRY_COMPARE(child.paintedRegion, grandChildMask.translated(grandChild.pos())); QTRY_COMPARE(grandChild.paintedRegion, grandChildMask); topLevel.setAttribute(Qt::WA_OpaquePaintEvent); child.setAttribute(Qt::WA_OpaquePaintEvent); grandChild.setAttribute(Qt::WA_OpaquePaintEvent); // All widgets are now opaque, which means no composition, i.e. // the update does not propate to ancestors and children. // TopLevel update. RESET_WIDGETS; topLevel.update(); QTest::qWait(10); QRegion expectedTopLevelUpdate = topLevelMask; expectedTopLevelUpdate -= childMask.translated(child.pos()); // Subtract opaque children. QTRY_COMPARE(topLevel.paintedRegion, expectedTopLevelUpdate); QTRY_COMPARE(child.paintedRegion, QRegion()); QTRY_COMPARE(grandChild.paintedRegion, QRegion()); // Child update. RESET_WIDGETS; child.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); QRegion expectedChildUpdate = childMask; expectedChildUpdate -= grandChildMask.translated(grandChild.pos()); // Subtract oapque children. QTRY_COMPARE(child.paintedRegion, expectedChildUpdate); QTRY_COMPARE(grandChild.paintedRegion, QRegion()); // GrandChild update. RESET_WIDGETS; grandChild.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); QTRY_COMPARE(child.paintedRegion, QRegion()); QTRY_COMPARE(grandChild.paintedRegion, grandChildMask); // GrandChild update. CLEAR_MASK(grandChild); grandChild.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); QTRY_COMPARE(child.paintedRegion, QRegion()); QRegion expectedGrandChildUpdate = grandChild.rect(); // Clip with parent's mask. expectedGrandChildUpdate &= childMask.translated(-grandChild.pos()); QCOMPARE(grandChild.paintedRegion, expectedGrandChildUpdate); // GrandChild update. CLEAR_MASK(child); grandChild.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); QTRY_COMPARE(child.paintedRegion, QRegion()); expectedGrandChildUpdate = grandChild.rect(); // Clip with parent's mask. expectedGrandChildUpdate &= topLevelMask.translated(-grandChild.mapTo(&topLevel, QPoint())); QTRY_COMPARE(grandChild.paintedRegion, expectedGrandChildUpdate); // Child update. RESET_WIDGETS; child.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); expectedChildUpdate = child.rect(); // Clip with parent's mask. expectedChildUpdate &= topLevelMask.translated(-child.pos()); expectedChildUpdate -= grandChild.geometry(); // Subtract opaque children. QTRY_COMPARE(child.paintedRegion, expectedChildUpdate); QTRY_COMPARE(grandChild.paintedRegion, QRegion()); // GrandChild update. CLEAR_MASK(topLevel); grandChild.update(); QTest::qWait(10); QTRY_COMPARE(topLevel.paintedRegion, QRegion()); QTRY_COMPARE(child.paintedRegion, QRegion()); QTRY_COMPARE(grandChild.paintedRegion, QRegion(grandChild.rect())); // Full update. } #if defined(Q_WS_X11) || defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_WS_QPA) void tst_QWidget::syntheticEnterLeave() { class MyWidget : public QWidget { public: MyWidget(QWidget *parent = 0) : QWidget(parent), numEnterEvents(0), numLeaveEvents(0) {} void enterEvent(QEvent *) { ++numEnterEvents; } void leaveEvent(QEvent *) { ++numLeaveEvents; } int numEnterEvents; int numLeaveEvents; }; QCursor::setPos(QPoint(0,0)); MyWidget window; window.setWindowFlags(Qt::WindowStaysOnTopHint); window.resize(200, 200); MyWidget *child1 = new MyWidget(&window); child1->setPalette(Qt::blue); child1->setAutoFillBackground(true); child1->resize(200, 200); child1->setCursor(Qt::OpenHandCursor); MyWidget *child2 = new MyWidget(&window); child2->resize(200, 200); MyWidget *grandChild = new MyWidget(child2); grandChild->setPalette(Qt::red); grandChild->setAutoFillBackground(true); grandChild->resize(200, 200); grandChild->setCursor(Qt::WaitCursor); window.show(); window.raise(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&window); #endif QTest::qWait(300); #define RESET_EVENT_COUNTS \ window.numEnterEvents = 0; \ window.numLeaveEvents = 0; \ child1->numEnterEvents = 0; \ child1->numLeaveEvents = 0; \ child2->numEnterEvents = 0; \ child2->numLeaveEvents = 0; \ grandChild->numEnterEvents = 0; \ grandChild->numLeaveEvents = 0; // Position the cursor in the middle of the window. const QPoint globalPos = window.mapToGlobal(QPoint(100, 100)); QCursor::setPos(globalPos); // Enter child2 and grandChild. QTest::qWait(300); #ifdef Q_OS_WINCE_WM QSKIP("Windows Mobile has no proper cursor support", SkipAll); #endif QCOMPARE(window.numLeaveEvents, 0); QCOMPARE(child2->numLeaveEvents, 0); QCOMPARE(grandChild->numLeaveEvents, 0); QCOMPARE(child1->numLeaveEvents, 0); // This event arrives asynchronously QTRY_COMPARE(window.numEnterEvents, 1); QCOMPARE(child2->numEnterEvents, 1); QCOMPARE(grandChild->numEnterEvents, 1); QCOMPARE(child1->numEnterEvents, 0); RESET_EVENT_COUNTS; child2->hide(); // Leave child2 and grandChild, enter child1. QCOMPARE(window.numLeaveEvents, 0); QCOMPARE(child2->numLeaveEvents, 1); QCOMPARE(grandChild->numLeaveEvents, 1); QCOMPARE(child1->numLeaveEvents, 0); QCOMPARE(window.numEnterEvents, 0); QCOMPARE(child2->numEnterEvents, 0); QCOMPARE(grandChild->numEnterEvents, 0); QCOMPARE(child1->numEnterEvents, 1); RESET_EVENT_COUNTS; child2->show(); // Leave child1, enter child2 and grandChild. QCOMPARE(window.numLeaveEvents, 0); QCOMPARE(child2->numLeaveEvents, 0); QCOMPARE(grandChild->numLeaveEvents, 0); QCOMPARE(child1->numLeaveEvents, 1); QCOMPARE(window.numEnterEvents, 0); QCOMPARE(child2->numEnterEvents, 1); QCOMPARE(grandChild->numEnterEvents, 1); QCOMPARE(child1->numEnterEvents, 0); RESET_EVENT_COUNTS; delete child2; // Enter child1 (and do not send leave events to child2 and grandChild). QCOMPARE(window.numLeaveEvents, 0); QCOMPARE(child1->numLeaveEvents, 0); QCOMPARE(window.numEnterEvents, 0); QCOMPARE(child1->numEnterEvents, 1); } void tst_QWidget::taskQTBUG_4055_sendSyntheticEnterLeave() { #ifdef Q_OS_WINCE_WM QSKIP("Windows Mobile has no proper cursor support", SkipAll); #endif class SELParent : public QWidget { public: SELParent(QWidget *parent = 0): QWidget(parent) { } void mousePressEvent(QMouseEvent *) { child->show(); } QWidget *child; }; class SELChild : public QWidget { public: SELChild(QWidget *parent = 0) : QWidget(parent), numEnterEvents(0), numMouseMoveEvents(0) {} void enterEvent(QEvent *) { ++numEnterEvents; } void mouseMoveEvent(QMouseEvent *event) { QCOMPARE(event->button(), Qt::NoButton); QCOMPARE(event->buttons(), Qt::MouseButtons(Qt::NoButton)); ++numMouseMoveEvents; } void reset() { numEnterEvents = numMouseMoveEvents = 0; } int numEnterEvents, numMouseMoveEvents; }; QCursor::setPos(QPoint(0,0)); SELParent parent; parent.resize(200, 200); SELChild child(&parent); child.resize(200, 200); parent.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&parent); #endif QTest::qWait(150); QCursor::setPos(child.mapToGlobal(QPoint(100, 100))); // Make sure the cursor has entered the child. QTRY_VERIFY(child.numEnterEvents > 0); child.hide(); child.reset(); child.show(); // Make sure the child gets enter event and no mouse move event. QTRY_COMPARE(child.numEnterEvents, 1); QCOMPARE(child.numMouseMoveEvents, 0); child.hide(); child.reset(); child.setMouseTracking(true); child.show(); // Make sure the child gets enter event and mouse move event. // Note that we verify event->button() and event->buttons() // in SELChild::mouseMoveEvent(). QTRY_COMPARE(child.numEnterEvents, 1); QCOMPARE(child.numMouseMoveEvents, 1); // Sending synthetic enter/leave trough the parent's mousePressEvent handler. parent.child = &child; child.hide(); child.reset(); QTest::mouseClick(&parent, Qt::LeftButton); // Make sure the child gets enter event and one mouse move event. QTRY_COMPARE(child.numEnterEvents, 1); QCOMPARE(child.numMouseMoveEvents, 1); child.hide(); child.reset(); child.setMouseTracking(false); QTest::mouseClick(&parent, Qt::LeftButton); // Make sure the child gets enter event and no mouse move event. QTRY_COMPARE(child.numEnterEvents, 1); QCOMPARE(child.numMouseMoveEvents, 0); } #endif void tst_QWidget::windowFlags() { QWidget w; w.setWindowFlags(w.windowFlags() | Qt::FramelessWindowHint); QVERIFY(w.windowFlags() & Qt::FramelessWindowHint); } void tst_QWidget::initialPosForDontShowOnScreenWidgets() { { // Check default position. const QPoint expectedPos(0, 0); QWidget widget; widget.setAttribute(Qt::WA_DontShowOnScreen); widget.winId(); // Make sure create_sys is called. QCOMPARE(widget.pos(), expectedPos); QCOMPARE(widget.geometry().topLeft(), expectedPos); } { // Explicitly move to a position. const QPoint expectedPos(100, 100); QWidget widget; widget.setAttribute(Qt::WA_DontShowOnScreen); widget.move(expectedPos); widget.winId(); // Make sure create_sys is called. QCOMPARE(widget.pos(), expectedPos); QCOMPARE(widget.geometry().topLeft(), expectedPos); } } #ifdef Q_WS_X11 void tst_QWidget::paintOutsidePaintEvent() { QWidget widget; widget.resize(200, 200); QWidget child1(&widget); child1.resize(100, 100); child1.setPalette(Qt::red); child1.setAutoFillBackground(true); QWidget child2(&widget); child2.setGeometry(50, 50, 100, 100); child2.setPalette(Qt::blue); child2.setAutoFillBackground(true); widget.show(); QTest::qWaitForWindowShown(&widget); QTest::qWait(60); const QPixmap before = QPixmap::grabWindow(widget.winId()); // Child 1 should be clipped by child 2, so nothing should change. child1.setAttribute(Qt::WA_PaintOutsidePaintEvent); QPainter painter(&child1); painter.fillRect(child1.rect(), Qt::red); painter.end(); XSync(QX11Info::display(), false); // Flush output buffer. QTest::qWait(60); const QPixmap after = QPixmap::grabWindow(widget.winId()); QCOMPARE(before, after); } #endif class MyEvilObject : public QObject { Q_OBJECT public: MyEvilObject(QWidget *widgetToCrash) : QObject(), widget(widgetToCrash) { connect(widget, SIGNAL(destroyed(QObject *)), this, SLOT(beEvil(QObject *))); delete widget; } QWidget *widget; private slots: void beEvil(QObject *) { widget->update(0, 0, 150, 150); } }; void tst_QWidget::updateOnDestroyedSignal() { QWidget widget; QWidget *child = new QWidget(&widget); child->resize(100, 100); child->setAutoFillBackground(true); child->setPalette(Qt::red); widget.show(); #ifdef Q_WS_X11 qt_x11_wait_for_window_manager(&widget); #endif QTest::qWait(200); // Please do not crash. MyEvilObject evil(child); QTest::qWait(200); } void tst_QWidget::toplevelLineEditFocus() { testWidget->hide(); QLineEdit w; w.show(); QTest::qWaitForWindowShown(&w); QTest::qWait(20); QTRY_COMPARE(QApplication::activeWindow(), (QWidget*)&w); QTRY_COMPARE(QApplication::focusWidget(), (QWidget*)&w); } void tst_QWidget::focusWidget_task254563() { //having different visibility for widget is important QWidget top; top.show(); QWidget container(&top); QWidget *widget = new QWidget(&container); widget->show(); widget->setFocus(); //set focus (will set the focus widget up to the toplevel to be 'widget') container.setFocus(); delete widget; // will call clearFocus but that doesn't help QVERIFY(top.focusWidget() != widget); //dangling pointer } void tst_QWidget::destroyBackingStore() { #ifdef QT_BUILD_INTERNAL UpdateWidget w; w.reset(); w.show(); QTest::qWaitForWindowShown(&w); QApplication::processEvents(); QTRY_VERIFY(w.numPaintEvents > 0); w.reset(); w.update(); qt_widget_private(&w)->topData()->backingStore.create(&w); w.update(); QApplication::processEvents(); #ifdef Q_WS_QWS QApplication::processEvents(); #endif QCOMPARE(w.numPaintEvents, 1); // Check one more time, because the second time around does more caching. w.update(); QApplication::processEvents(); QCOMPARE(w.numPaintEvents, 2); #else QSKIP("Test case relies on developer build (AUTOTEST_EXPORT)", SkipAll); #endif } // Helper function QWidgetBackingStore* backingStore(QWidget &widget) { QWidgetBackingStore *backingStore = 0; #ifdef QT_BUILD_INTERNAL if (QTLWExtra *topExtra = qt_widget_private(&widget)->maybeTopData()) backingStore = topExtra->backingStore.data(); #endif return backingStore; } // Wait for a condition to be true, timing out after 1 second // This is used following calls to QWidget::show() and QWidget::hide(), which are // expected to asynchronously trigger native window visibility events. #define WAIT_AND_VERIFY(condition) \ do { \ QTime start = QTime::currentTime(); \ while (!(condition) && (start.elapsed() < 1000)) { \ qApp->processEvents(); \ QTest::qWait(50); \ } \ if (!QTest::qVerify((condition), #condition, "", __FILE__, __LINE__)) \ return; \ } while (0) void tst_QWidget::destroyBackingStoreWhenHidden() { #ifndef QT_BUILD_INTERNAL QSKIP("Test step requires access to Q_AUTOTEST_EXPORT", SkipAll); #endif #ifndef Q_OS_SYMBIAN QSKIP("Only Symbian destroys backing store when native window becomes invisible", SkipAll); #endif testWidget->hide(); QTest::qWait(1000); // 1. Single top-level QWidget { QWidget w; w.setAutoFillBackground(true); w.setPalette(Qt::yellow); w.setGeometry(0, 0, 100, 100); w.show(); QTest::qWaitForWindowShown(&w); QVERIFY(0 != backingStore(w)); w.hide(); WAIT_AND_VERIFY(0 == backingStore(w)); w.show(); QTest::qWaitForWindowShown(&w); QVERIFY(0 != backingStore(w)); } // 2. Two top-level widgets { QWidget w1; w1.setGeometry(0, 0, 100, 100); w1.setAutoFillBackground(true); w1.setPalette(Qt::red); w1.show(); QTest::qWaitForWindowShown(&w1); QVERIFY(0 != backingStore(w1)); QWidget w2; w2.setGeometry(w1.geometry()); w1.setAutoFillBackground(true); w1.setPalette(Qt::blue); w2.show(); QTest::qWaitForWindowShown(&w2); QVERIFY(0 != backingStore(w2)); // Check that w1 deleted its backing store when obscured by w2 QVERIFY(0 == backingStore(w1)); w2.move(w2.pos() + QPoint(10, 10)); // Check that w1 recreates its backing store when partially revealed WAIT_AND_VERIFY(0 != backingStore(w1)); } // 3. Native child widget { QWidget parent; parent.setGeometry(0, 0, 100, 100); parent.setAutoFillBackground(true); parent.setPalette(Qt::yellow); QWidget child(&parent); child.setAutoFillBackground(true); child.setPalette(Qt::green); QVBoxLayout layout(&parent); layout.setContentsMargins(10, 10, 10, 10); layout.addWidget(&child); parent.setLayout(&layout); child.winId(); parent.show(); QTest::qWaitForWindowShown(&parent); // Check that child window does not obscure parent window QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Native child widget should share parent's backing store QWidgetBackingStore *const parentBs = backingStore(parent); QVERIFY(0 != parentBs); QVERIFY(0 == backingStore(child)); // Set margins to zero so that child widget totally obscures parent layout.setContentsMargins(0, 0, 0, 0); WAIT_AND_VERIFY(parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Backing store should remain unchanged despite child window obscuring // parent window QVERIFY(parentBs == backingStore(parent)); QVERIFY(0 == backingStore(child)); } // 4. Alien child widget which is made full-screen { QWidget parent; parent.setGeometry(0, 0, 100, 100); parent.setAutoFillBackground(true); parent.setPalette(Qt::red); QWidget child(&parent); child.setAutoFillBackground(true); child.setPalette(Qt::blue); QVBoxLayout layout(&parent); layout.setContentsMargins(10, 10, 10, 10); layout.addWidget(&child); parent.setLayout(&layout); parent.show(); QTest::qWaitForWindowShown(&parent); // Check that child window does not obscure parent window QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Native child widget should share parent's backing store QVERIFY(0 != backingStore(parent)); QVERIFY(0 == backingStore(child)); // Make child widget full screen child.setWindowFlags((child.windowFlags() | Qt::Window) ^ Qt::SubWindow); child.setWindowState(child.windowState() | Qt::WindowFullScreen); child.show(); QTest::qWaitForWindowShown(&child); // Check that child window obscures parent window QVERIFY(parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Now that extent of child widget goes beyond parent's extent, // a new backing store should be created for the child widget. QVERIFY(0 != backingStore(child)); // Parent is obscured, therefore its backing store should be destroyed QVERIFY(0 == backingStore(parent)); // Disable full screen child.setWindowFlags(child.windowFlags() ^ (Qt::Window | Qt::SubWindow)); child.setWindowState(child.windowState() ^ Qt::WindowFullScreen); child.show(); QTest::qWaitForWindowShown(&child); // Check that parent is now visible again QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Native child widget should once again share parent's backing store QVERIFY(0 != backingStore(parent)); QVERIFY(0 == backingStore(child)); } // 5. Native child widget which is made full-screen { QWidget parent; parent.setGeometry(0, 0, 100, 100); parent.setAutoFillBackground(true); parent.setPalette(Qt::red); QWidget child(&parent); child.setAutoFillBackground(true); child.setPalette(Qt::blue); QWidget grandChild(&child); grandChild.setAutoFillBackground(true); grandChild.setPalette(Qt::yellow); QVBoxLayout layout(&parent); layout.setContentsMargins(10, 10, 10, 10); layout.addWidget(&child); parent.setLayout(&layout); QVBoxLayout childLayout(&child); childLayout.setContentsMargins(10, 10, 10, 10); childLayout.addWidget(&grandChild); child.setLayout(&childLayout); // Ensure that this widget and all its ancestors are native grandChild.winId(); parent.show(); QTest::qWaitForWindowShown(&parent); // Check that child window does not obscure parent window QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); // Native child widget should share parent's backing store QVERIFY(0 != backingStore(parent)); QVERIFY(0 == backingStore(child)); QVERIFY(0 == backingStore(grandChild)); // Make child widget full screen child.setWindowFlags((child.windowFlags() | Qt::Window) ^ Qt::SubWindow); child.setWindowState(child.windowState() | Qt::WindowFullScreen); child.show(); // Paint into the child to ensure that it gets a backing store QPainter painter(&child); painter.fillRect(QRect(0, 0, 90, 90), Qt::white); QTest::qWaitForWindowShown(&child); // Ensure that 'window hidden' event is received by parent qApp->processEvents(); // Check that child window obscures parent window QVERIFY(parent.visibleRegion().subtracted(child.visibleRegion() + grandChild.visibleRegion()).isEmpty()); // Now that extent of child widget goes beyond parent's extent, // a new backing store should be created for the child widget. QVERIFY(0 != backingStore(child)); // Parent is obscured, therefore its backing store should be destroyed QVERIFY(0 == backingStore(parent)); // Disable full screen child.setWindowFlags(child.windowFlags() ^ (Qt::Window | Qt::SubWindow)); child.setWindowState(child.windowState() ^ Qt::WindowFullScreen); child.show(); QTest::qWaitForWindowShown(&child); // Check that parent is now visible again QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion() + grandChild.visibleRegion()).isEmpty()); // Native child widget should once again share parent's backing store QVERIFY(0 != backingStore(parent)); QVERIFY(0 == backingStore(child)); QVERIFY(0 == backingStore(grandChild)); } // 6. Partial reveal followed by full reveal { QWidget upper; upper.setAutoFillBackground(true); upper.setPalette(Qt::red); upper.setGeometry(50, 50, 100, 100); QWidget lower; lower.setAutoFillBackground(true); lower.setPalette(Qt::green); lower.setGeometry(50, 50, 100, 100); lower.show(); QTest::qWaitForWindowShown(&lower); upper.show(); QTest::qWaitForWindowShown(&upper); upper.raise(); QVERIFY(0 != backingStore(upper)); QVERIFY(0 == backingStore(lower)); // Check that upper obscures lower QVERIFY(lower.visibleRegion().subtracted(upper.visibleRegion()).isEmpty()); // Partially reveal lower upper.move(100, 100); // Completely reveal lower upper.hide(); // Hide lower widget - this should cause its backing store to be deleted lower.hide(); // Check that backing store was deleted WAIT_AND_VERIFY(0 == backingStore(lower)); } // 7. Reparenting of visible native child widget { QWidget parent1; parent1.setAutoFillBackground(true); parent1.setPalette(Qt::green); parent1.setGeometry(50, 50, 100, 100); QWidget *child = new QWidget(&parent1); child->winId(); child->setAutoFillBackground(true); child->setPalette(Qt::red); child->setGeometry(10, 10, 30, 30); QWidget parent2; parent2.setAutoFillBackground(true); parent2.setPalette(Qt::blue); parent2.setGeometry(150, 150, 100, 100); parent1.show(); QTest::qWaitForWindowShown(&parent1); QVERIFY(0 != backingStore(parent1)); parent2.show(); QTest::qWaitForWindowShown(&parent2); QVERIFY(0 != backingStore(parent2)); child->setParent(&parent2); child->setGeometry(10, 10, 30, 30); child->show(); parent1.hide(); WAIT_AND_VERIFY(0 == backingStore(parent1)); parent2.hide(); WAIT_AND_VERIFY(0 == backingStore(parent2)); } } #undef WAIT_AND_VERIFY void tst_QWidget::rectOutsideCoordinatesLimit_task144779() { #ifdef Q_OS_WINCE_WM QSKIP( "Tables of 5000 elements do not make sense on Windows Mobile.", SkipAll); #endif QApplication::setOverrideCursor(Qt::BlankCursor); //keep the cursor out of screen grabs QWidget main(0,Qt::FramelessWindowHint); //don't get confused by the size of the window frame QPalette palette; palette.setColor(QPalette::Window, Qt::red); main.setPalette(palette); QDesktopWidget desktop; QRect desktopDimensions = desktop.availableGeometry(&main); QSize mainSize(400, 400); mainSize = mainSize.boundedTo(desktopDimensions.size()); main.resize(mainSize); QWidget *offsetWidget = new QWidget(&main); offsetWidget->setGeometry(0, -(15000 - mainSize.height()), mainSize.width(), 15000); // big widget is too big for the coordinates, it must be limited by wrect // if wrect is not at the right position because of offsetWidget, bigwidget // is not painted correctly QWidget *bigWidget = new QWidget(offsetWidget); bigWidget->setGeometry(0, 0, mainSize.width(), 50000); palette.setColor(QPalette::Window, Qt::green); bigWidget->setPalette(palette); bigWidget->setAutoFillBackground(true); main.show(); QTest::qWaitForWindowShown(&main); QPixmap correct(main.size()); correct.fill(Qt::green); QTRY_COMPARE(QPixmap::grabWindow(main.winId()).toImage().convertToFormat(QImage::Format_RGB32), correct.toImage().convertToFormat(QImage::Format_RGB32)); QApplication::restoreOverrideCursor(); } void tst_QWidget::inputFocus_task257832() { QLineEdit *widget = new QLineEdit; QInputContext *context = widget->inputContext(); if (!context) QSKIP("No input context", SkipSingle); widget->setFocus(); widget->winId(); // make sure, widget has been created context->setFocusWidget(widget); QCOMPARE(context->focusWidget(), static_cast<QWidget*>(widget)); widget->setReadOnly(true); QVERIFY(!context->focusWidget()); delete widget; } void tst_QWidget::setGraphicsEffect() { // Check that we don't have any effect by default. QWidget *widget = new QWidget; QVERIFY(!widget->graphicsEffect()); // SetGet check. QPointer<QGraphicsEffect> blurEffect = new QGraphicsBlurEffect; widget->setGraphicsEffect(blurEffect); QCOMPARE(widget->graphicsEffect(), static_cast<QGraphicsEffect *>(blurEffect)); // Ensure the existing effect is deleted when setting a new one. QPointer<QGraphicsEffect> shadowEffect = new QGraphicsDropShadowEffect; widget->setGraphicsEffect(shadowEffect); QVERIFY(!blurEffect); QCOMPARE(widget->graphicsEffect(), static_cast<QGraphicsEffect *>(shadowEffect)); blurEffect = new QGraphicsBlurEffect; // Ensure the effect is uninstalled when setting it on a new target. QWidget *anotherWidget = new QWidget; anotherWidget->setGraphicsEffect(blurEffect); widget->setGraphicsEffect(blurEffect); QVERIFY(!anotherWidget->graphicsEffect()); QVERIFY(!shadowEffect); // Ensure the existing effect is deleted when deleting the widget. delete widget; QVERIFY(!blurEffect); delete anotherWidget; // Ensure the effect is uninstalled when deleting it widget = new QWidget; blurEffect = new QGraphicsBlurEffect; widget->setGraphicsEffect(blurEffect); delete blurEffect; QVERIFY(!widget->graphicsEffect()); // Ensure the existing effect is uninstalled and deleted when setting a null effect blurEffect = new QGraphicsBlurEffect; widget->setGraphicsEffect(blurEffect); widget->setGraphicsEffect(0); QVERIFY(!widget->graphicsEffect()); QVERIFY(!blurEffect); delete widget; } void tst_QWidget::activateWindow() { // Test case for task 260685 // Create first mainwindow and set it active QMainWindow* mainwindow = new QMainWindow(); QLabel* label = new QLabel(mainwindow); mainwindow->setCentralWidget(label); mainwindow->setVisible(true); mainwindow->activateWindow(); QTest::qWaitForWindowShown(mainwindow); qApp->processEvents(); QTRY_VERIFY(mainwindow->isActiveWindow()); // Create second mainwindow and set it active QMainWindow* mainwindow2 = new QMainWindow(); QLabel* label2 = new QLabel(mainwindow2); mainwindow2->setCentralWidget(label2); mainwindow2->setVisible(true); mainwindow2->activateWindow(); qApp->processEvents(); QTRY_VERIFY(!mainwindow->isActiveWindow()); QTRY_VERIFY(mainwindow2->isActiveWindow()); // Revert first mainwindow back to visible active mainwindow->setVisible(true); mainwindow->activateWindow(); qApp->processEvents(); QTRY_VERIFY(mainwindow->isActiveWindow()); QTRY_VERIFY(!mainwindow2->isActiveWindow()); } void tst_QWidget::openModal_taskQTBUG_5804() { class Widget : public QWidget { public: Widget(QWidget *parent) : QWidget(parent) { } ~Widget() { QMessageBox msgbox; QTimer::singleShot(10, &msgbox, SLOT(accept())); msgbox.exec(); //open a modal dialog } }; QWidget *win = new QWidget; new Widget(win); win->show(); QTest::qWaitForWindowShown(win); delete win; } #ifdef Q_OS_SYMBIAN void tst_QWidget::cbaVisibility() { // Test case for task 261048 // Create first mainwindow in fullsreen and activate it QMainWindow* mainwindow = new QMainWindow(); QLabel* label = new QLabel(mainwindow); mainwindow->setCentralWidget(label); mainwindow->setWindowState(Qt::WindowFullScreen); mainwindow->setVisible(true); mainwindow->activateWindow(); qApp->processEvents(); QVERIFY(mainwindow->isActiveWindow()); QVERIFY(QDesktopWidget().availableGeometry().size() == mainwindow->size()); // Create second mainwindow in maximized and activate it QMainWindow* mainwindow2 = new QMainWindow(); QLabel* label2 = new QLabel(mainwindow2); mainwindow2->setCentralWidget(label2); mainwindow2->setWindowState(Qt::WindowMaximized); mainwindow2->setVisible(true); mainwindow2->activateWindow(); qApp->processEvents(); QVERIFY(!mainwindow->isActiveWindow()); QVERIFY(mainwindow2->isActiveWindow()); QVERIFY(QDesktopWidget().availableGeometry().size() == mainwindow2->size()); // Verify window decorations i.e. status pane and CBA are visible. CEikStatusPane* statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); QVERIFY(statusPane->IsVisible()); CEikButtonGroupContainer* buttonGroup = CEikButtonGroupContainer::Current(); QVERIFY(buttonGroup->IsVisible()); } void tst_QWidget::fullScreenWindowModeTransitions() { QWidget widget; QVBoxLayout *layout = new QVBoxLayout; QPushButton *button = new QPushButton("test Button"); layout->addWidget(button); widget.setLayout(layout); widget.show(); const QRect normalGeometry = widget.normalGeometry(); const QRect fullScreenGeometry = qApp->desktop()->screenGeometry(&widget); const QRect maximumScreenGeometry = qApp->desktop()->availableGeometry(&widget); CEikStatusPane *statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); CEikButtonGroupContainer *buttonGroup = CEikButtonGroupContainer::Current(); //Enter widget.showNormal(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showMaximized(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showMinimized(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); //Exit widget.showFullScreen(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showFullScreen(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showFullScreen(); widget.showMinimized(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); } void tst_QWidget::maximizedWindowModeTransitions() { QWidget widget; QVBoxLayout *layout = new QVBoxLayout; QPushButton *button = new QPushButton("test Button"); layout->addWidget(button); widget.setLayout(layout); widget.show(); const QRect normalGeometry = widget.normalGeometry(); const QRect fullScreenGeometry = qApp->desktop()->screenGeometry(&widget); const QRect maximumScreenGeometry = qApp->desktop()->availableGeometry(&widget); CEikStatusPane *statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); CEikButtonGroupContainer *buttonGroup = CEikButtonGroupContainer::Current(); //Enter widget.showNormal(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showFullScreen(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showMinimized(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); //Exit widget.showMaximized(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showMaximized(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showMaximized(); widget.showMinimized(); // Since showMinimized hides window decoration availableGeometry gives different value // than with decoration visible. Altual size does not really matter since widget is invisible. QCOMPARE(widget.geometry(), qApp->desktop()->availableGeometry(&widget)); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); } void tst_QWidget::minimizedWindowModeTransitions() { QWidget widget; QVBoxLayout *layout = new QVBoxLayout; QPushButton *button = new QPushButton("test Button"); layout->addWidget(button); widget.setLayout(layout); widget.show(); const QRect normalGeometry = widget.normalGeometry(); const QRect fullScreenGeometry = qApp->desktop()->screenGeometry(&widget); const QRect maximumScreenGeometry = qApp->desktop()->availableGeometry(&widget); CEikStatusPane *statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); CEikButtonGroupContainer *buttonGroup = CEikButtonGroupContainer::Current(); //Enter widget.showNormal(); widget.showMinimized(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showFullScreen(); widget.showMinimized(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showMaximized(); widget.showMinimized(); // Since showMinimized hides window decoration availableGeometry gives different value // than with decoration visible. Altual size does not really matter since widget is invisible. QCOMPARE(widget.geometry(), qApp->desktop()->availableGeometry(&widget)); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); //Exit widget.showMinimized(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showMinimized(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showMinimized(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); } void tst_QWidget::normalWindowModeTransitions() { QWidget widget; QVBoxLayout *layout = new QVBoxLayout; QPushButton *button = new QPushButton("test Button"); layout->addWidget(button); widget.setLayout(layout); widget.show(); const QRect normalGeometry = widget.normalGeometry(); const QRect fullScreenGeometry = qApp->desktop()->screenGeometry(&widget); const QRect maximumScreenGeometry = qApp->desktop()->availableGeometry(&widget); CEikStatusPane *statusPane = CEikonEnv::Static()->AppUiFactory()->StatusPane(); CEikButtonGroupContainer *buttonGroup = CEikButtonGroupContainer::Current(); //Enter widget.showMaximized(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showFullScreen(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showMinimized(); widget.showNormal(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); //Exit widget.showNormal(); widget.showMaximized(); QCOMPARE(widget.geometry(), maximumScreenGeometry); QVERIFY(buttonGroup->IsVisible()); QVERIFY(statusPane->IsVisible()); widget.showNormal(); widget.showFullScreen(); QCOMPARE(widget.geometry(), fullScreenGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); widget.showNormal(); widget.showMinimized(); QCOMPARE(widget.geometry(), normalGeometry); QVERIFY(!buttonGroup->IsVisible()); QVERIFY(!statusPane->IsVisible()); } void tst_QWidget::focusSwitchClosesPopupMenu() { QMainWindow mainWindow; QAction action("Test action", &mainWindow); mainWindow.menuBar()->addAction(&action); mainWindow.show(); QT_TRAP_THROWING(CEikonEnv::Static()->AppUiFactory()->MenuBar()->TryDisplayMenuBarL()); QVERIFY(CEikonEnv::Static()->AppUiFactory()->MenuBar()->IsDisplayed()); // Close the popup by opening a new window. QMainWindow mainWindow2; QAction action2("Test action", &mainWindow2); mainWindow2.menuBar()->addAction(&action2); mainWindow2.show(); QVERIFY(!CEikonEnv::Static()->AppUiFactory()->MenuBar()->IsDisplayed()); QT_TRAP_THROWING(CEikonEnv::Static()->AppUiFactory()->MenuBar()->TryDisplayMenuBarL()); QVERIFY(CEikonEnv::Static()->AppUiFactory()->MenuBar()->IsDisplayed()); // Close the popup by switching focus. mainWindow.activateWindow(); QVERIFY(!CEikonEnv::Static()->AppUiFactory()->MenuBar()->IsDisplayed()); } #endif class InputContextTester : public QInputContext { Q_OBJECT public: QString identifierName() { return QString(); } bool isComposing() const { return false; } QString language() { return QString(); } void reset() { ++resets; } int resets; }; void tst_QWidget::focusProxyAndInputMethods() { InputContextTester *inputContext = new InputContextTester; QWidget *toplevel = new QWidget(0, Qt::X11BypassWindowManagerHint); toplevel->setAttribute(Qt::WA_InputMethodEnabled, true); toplevel->setInputContext(inputContext); // ownership is transferred QWidget *child = new QWidget(toplevel); child->setFocusProxy(toplevel); child->setAttribute(Qt::WA_InputMethodEnabled, true); toplevel->setFocusPolicy(Qt::WheelFocus); child->setFocusPolicy(Qt::WheelFocus); QVERIFY(!child->hasFocus()); QVERIFY(!toplevel->hasFocus()); toplevel->show(); QTest::qWaitForWindowShown(toplevel); QApplication::setActiveWindow(toplevel); QVERIFY(toplevel->hasFocus()); QVERIFY(child->hasFocus()); // verify that toggling input methods on the child widget // correctly propagate to the focus proxy's input method // and that the input method gets the focus proxy passed // as the focus widget instead of the child widget. // otherwise input method queries go to the wrong widget QCOMPARE(inputContext->focusWidget(), toplevel); child->setAttribute(Qt::WA_InputMethodEnabled, false); QVERIFY(!inputContext->focusWidget()); child->setAttribute(Qt::WA_InputMethodEnabled, true); QCOMPARE(inputContext->focusWidget(), toplevel); child->setEnabled(false); QVERIFY(!inputContext->focusWidget()); child->setEnabled(true); QCOMPARE(inputContext->focusWidget(), toplevel); delete toplevel; } #ifdef QT_BUILD_INTERNAL class scrollWidgetWBS : public QWidget { public: void deleteBackingStore() { static_cast<QWidgetPrivate*>(d_ptr.data())->topData()->backingStore.destroy(); } void enableBackingStore() { if (!static_cast<QWidgetPrivate*>(d_ptr.data())->maybeBackingStore()) { static_cast<QWidgetPrivate*>(d_ptr.data())->topData()->backingStore.create(this); static_cast<QWidgetPrivate*>(d_ptr.data())->invalidateBuffer(this->rect()); repaint(); } } }; #endif void tst_QWidget::scrollWithoutBackingStore() { #ifdef QT_BUILD_INTERNAL scrollWidgetWBS scrollable; scrollable.resize(100,100); QLabel child(QString("@"),&scrollable); child.resize(50,50); scrollable.show(); QTest::qWaitForWindowShown(&scrollable); scrollable.scroll(50,50); QCOMPARE(child.pos(),QPoint(50,50)); scrollable.deleteBackingStore(); scrollable.scroll(-25,-25); QCOMPARE(child.pos(),QPoint(25,25)); scrollable.enableBackingStore(); QCOMPARE(child.pos(),QPoint(25,25)); #else QSKIP("Test case relies on developer build (AUTOTEST_EXPORT)", SkipAll); #endif } void tst_QWidget::taskQTBUG_7532_tabOrderWithFocusProxy() { QWidget w; w.setFocusPolicy(Qt::TabFocus); QWidget *fp = new QWidget(&w); fp->setFocusPolicy(Qt::TabFocus); w.setFocusProxy(fp); QWidget::setTabOrder(&w, fp); // No Q_ASSERT, then it's allright. } void tst_QWidget::movedAndResizedAttributes() { #if defined (Q_OS_MAC) || defined(Q_WS_QWS) || defined(Q_OS_SYMBIAN) QEXPECT_FAIL("", "FixMe, QTBUG-8941 and QTBUG-8977", Abort); QVERIFY(false); #else QWidget w; w.show(); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setWindowState(Qt::WindowFullScreen); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setWindowState(Qt::WindowMaximized); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.setWindowState(Qt::WindowMinimized); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.showNormal(); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.showMaximized(); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.showFullScreen(); QVERIFY(!w.testAttribute(Qt::WA_Moved)); QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.showNormal(); w.move(10,10); QVERIFY(w.testAttribute(Qt::WA_Moved)); #if defined(Q_OS_WIN) QEXPECT_FAIL("", "FixMe, QTBUG-8911", Abort); #endif QVERIFY(!w.testAttribute(Qt::WA_Resized)); w.resize(100, 100); QVERIFY(w.testAttribute(Qt::WA_Moved)); QVERIFY(w.testAttribute(Qt::WA_Resized)); #endif } void tst_QWidget::childAt() { QWidget parent(0, Qt::FramelessWindowHint); parent.resize(200, 200); QWidget *child = new QWidget(&parent); child->setPalette(Qt::red); child->setAutoFillBackground(true); child->setGeometry(20, 20, 160, 160); QWidget *grandChild = new QWidget(child); grandChild->setPalette(Qt::blue); grandChild->setAutoFillBackground(true); grandChild->setGeometry(-20, -20, 220, 220); QVERIFY(!parent.childAt(19, 19)); QVERIFY(!parent.childAt(180, 180)); QCOMPARE(parent.childAt(20, 20), grandChild); QCOMPARE(parent.childAt(179, 179), grandChild); grandChild->setAttribute(Qt::WA_TransparentForMouseEvents); QCOMPARE(parent.childAt(20, 20), child); QCOMPARE(parent.childAt(179, 179), child); grandChild->setAttribute(Qt::WA_TransparentForMouseEvents, false); child->setMask(QRect(50, 50, 60, 60)); QVERIFY(!parent.childAt(69, 69)); QVERIFY(!parent.childAt(130, 130)); QCOMPARE(parent.childAt(70, 70), grandChild); QCOMPARE(parent.childAt(129, 129), grandChild); child->setAttribute(Qt::WA_MouseNoMask); QCOMPARE(parent.childAt(69, 69), grandChild); QCOMPARE(parent.childAt(130, 130), grandChild); child->setAttribute(Qt::WA_MouseNoMask, false); grandChild->setAttribute(Qt::WA_TransparentForMouseEvents); QCOMPARE(parent.childAt(70, 70), child); QCOMPARE(parent.childAt(129, 129), child); grandChild->setAttribute(Qt::WA_TransparentForMouseEvents, false); grandChild->setMask(QRect(80, 80, 40, 40)); QCOMPARE(parent.childAt(79, 79), child); QCOMPARE(parent.childAt(120, 120), child); QCOMPARE(parent.childAt(80, 80), grandChild); QCOMPARE(parent.childAt(119, 119), grandChild); grandChild->setAttribute(Qt::WA_MouseNoMask); QCOMPARE(parent.childAt(79, 79), grandChild); QCOMPARE(parent.childAt(120, 120), grandChild); } #ifdef Q_WS_MAC void tst_QWidget::childAt_unifiedToolBar() { QLabel *label = new QLabel(QLatin1String("foo")); QToolBar *toolBar = new QToolBar; toolBar->addWidget(new QLabel("dummy")); toolBar->addWidget(label); QMainWindow mainWindow; mainWindow.addToolBar(toolBar); mainWindow.show(); // Calculate the top-left corner of the tool bar and the label (in mainWindow's coordinates). QPoint labelTopLeft = label->mapTo(&mainWindow, QPoint()); QPoint toolBarTopLeft = toolBar->mapTo(&mainWindow, QPoint()); QCOMPARE(mainWindow.childAt(toolBarTopLeft), static_cast<QWidget *>(toolBar)); QCOMPARE(mainWindow.childAt(labelTopLeft), static_cast<QWidget *>(label)); // Enable unified tool bars. mainWindow.setUnifiedTitleAndToolBarOnMac(true); QTest::qWait(50); // The tool bar is now in the "non-client" area of QMainWindow, i.e. // outside the mainWindow's rect(), and since mapTo et al. doesn't work // in that case (see commit 35667fd45ada49269a5987c235fdedfc43e92bb8), // we use mapToGlobal/mapFromGlobal to re-calculate the corners. QPoint oldToolBarTopLeft = toolBarTopLeft; toolBarTopLeft = mainWindow.mapFromGlobal(toolBar->mapToGlobal(QPoint())); QVERIFY(toolBarTopLeft != oldToolBarTopLeft); QVERIFY(toolBarTopLeft.y() < 0); labelTopLeft = mainWindow.mapFromGlobal(label->mapToGlobal(QPoint())); QCOMPARE(mainWindow.childAt(toolBarTopLeft), static_cast<QWidget *>(toolBar)); QCOMPARE(mainWindow.childAt(labelTopLeft), static_cast<QWidget *>(label)); } #ifdef QT_MAC_USE_COCOA void tst_QWidget::taskQTBUG_11373() { QMainWindow * myWindow = new QMainWindow(); QWidget * center = new QWidget(); myWindow -> setCentralWidget(center); QWidget * drawer = new QWidget(myWindow, Qt::Drawer); drawer -> hide(); QCOMPARE(drawer->isVisible(), false); myWindow -> show(); myWindow -> raise(); // The drawer shouldn't be visible now. QCOMPARE(drawer->isVisible(), false); myWindow -> setWindowState(Qt::WindowFullScreen); myWindow -> setWindowState(Qt::WindowNoState); // The drawer should still not be visible, since we haven't shown it. QCOMPARE(drawer->isVisible(), false); } #endif // QT_MAC_USE_COCOA #endif void tst_QWidget::nativeChildFocus() { QWidget w; QLayout *layout = new QVBoxLayout; w.setLayout(layout); QLineEdit *p1 = new QLineEdit; QLineEdit *p2 = new QLineEdit; layout->addWidget(p1); layout->addWidget(p2); p1->setObjectName("p1"); p2->setObjectName("p2"); w.show(); w.activateWindow(); p1->setFocus(); p1->setAttribute(Qt::WA_NativeWindow); p2->setAttribute(Qt::WA_NativeWindow); QApplication::processEvents(); QTest::qWaitForWindowShown(&w); QCOMPARE(QApplication::activeWindow(), &w); QCOMPARE(QApplication::focusWidget(), static_cast<QWidget*>(p1)); } QTEST_MAIN(tst_QWidget) #include "tst_qwidget.moc"