1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
|
// -*- c-basic-offset: 2 -*-
/*
* This file is part of the KDE libraries
* Copyright (C) 2000-2003 Harri Porten (porten@kde.org)
* Copyright (C) 2001-2003 David Faure (faure@kde.org)
* Copyright (C) 2003 Apple Computer, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "tdehtmlview.h"
#include "tdehtml_part.h"
#include "tdehtmlpart_p.h"
#include "tdehtml_settings.h"
#include "xml/dom2_eventsimpl.h"
#include "xml/dom_docimpl.h"
#include "misc/htmltags.h"
#include "html/html_documentimpl.h"
#include "rendering/render_frames.h"
#include <tqstylesheet.h>
#include <tqtimer.h>
#include <tqpaintdevicemetrics.h>
#include <tqapplication.h>
#include <kdebug.h>
#include <kmessagebox.h>
#include <kinputdialog.h>
#include <klocale.h>
#include <kmdcodec.h>
#include <tdeparts/browserinterface.h>
#include <twin.h>
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
#include <twinmodule.h> // schroder
#endif
#ifndef KONQ_EMBEDDED
#include <kbookmarkmanager.h>
#endif
#include <kglobalsettings.h>
#include <assert.h>
#include <tqstyle.h>
#include <tqobjectlist.h>
#include <kstringhandler.h>
#include "kjs_proxy.h"
#include "kjs_window.h"
#include "kjs_navigator.h"
#include "kjs_mozilla.h"
#include "kjs_html.h"
#include "kjs_range.h"
#include "kjs_traversal.h"
#include "kjs_css.h"
#include "kjs_events.h"
#include "kjs_views.h"
#include "xmlhttprequest.h"
#include "xmlserializer.h"
#include "domparser.h"
using namespace KJS;
namespace KJS {
class History : public ObjectImp {
friend class HistoryFunc;
public:
History(ExecState *exec, KHTMLPart *p)
: ObjectImp(exec->interpreter()->builtinObjectPrototype()), part(p) { }
virtual Value get(ExecState *exec, const Identifier &propertyName) const;
Value getValueProperty(ExecState *exec, int token) const;
virtual const ClassInfo* classInfo() const { return &info; }
static const ClassInfo info;
enum { Back, Forward, Go, Length };
private:
TQGuardedPtr<KHTMLPart> part;
};
class External : public ObjectImp {
friend class ExternalFunc;
public:
External(ExecState *exec, KHTMLPart *p)
: ObjectImp(exec->interpreter()->builtinObjectPrototype()), part(p) { }
virtual Value get(ExecState *exec, const Identifier &propertyName) const;
virtual const ClassInfo* classInfo() const { return &info; }
static const ClassInfo info;
enum { AddFavorite };
private:
TQGuardedPtr<KHTMLPart> part;
};
class FrameArray : public ObjectImp {
public:
FrameArray(ExecState *exec, KHTMLPart *p)
: ObjectImp(exec->interpreter()->builtinObjectPrototype()), part(p) { }
virtual Value get(ExecState *exec, const Identifier &propertyName) const;
virtual Value call(ExecState *exec, Object &thisObj, const List &args);
virtual bool implementsCall() const { return true; }
private:
TQGuardedPtr<KHTMLPart> part;
};
#ifdef Q_WS_QWS
class KonquerorFunc : public DOMFunction {
public:
KonquerorFunc(ExecState *exec, const Konqueror* k, const char* name)
: DOMFunction(exec), konqueror(k), m_name(name) { }
virtual Value tryCall(ExecState *exec, Object &thisObj, const List &args);
private:
const Konqueror* konqueror;
TQCString m_name;
};
#endif
} // namespace KJS
#include "kjs_window.lut.h"
#include "rendering/render_replaced.h"
////////////////////// Screen Object ////////////////////////
namespace KJS {
// table for screen object
/*
@begin ScreenTable 7
height Screen::Height DontEnum|ReadOnly
width Screen::Width DontEnum|ReadOnly
colorDepth Screen::ColorDepth DontEnum|ReadOnly
pixelDepth Screen::PixelDepth DontEnum|ReadOnly
availLeft Screen::AvailLeft DontEnum|ReadOnly
availTop Screen::AvailTop DontEnum|ReadOnly
availHeight Screen::AvailHeight DontEnum|ReadOnly
availWidth Screen::AvailWidth DontEnum|ReadOnly
@end
*/
const ClassInfo Screen::info = { "Screen", 0, &ScreenTable, 0 };
// We set the object prototype so that toString is implemented
Screen::Screen(ExecState *exec)
: ObjectImp(exec->interpreter()->builtinObjectPrototype()) {}
Value Screen::get(ExecState *exec, const Identifier &p) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "Screen::get " << p.qstring() << endl;
#endif
return lookupGetValue<Screen,ObjectImp>(exec,p,&ScreenTable,this);
}
Value Screen::getValueProperty(ExecState *exec, int token) const
{
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
KWinModule info(0, KWinModule::INFO_DESKTOP);
#endif
TQWidget *thisWidget = Window::retrieveActive(exec)->part()->widget();
TQRect sg = TDEGlobalSettings::desktopGeometry(thisWidget);
switch( token ) {
case Height:
return Number(sg.height());
case Width:
return Number(sg.width());
case ColorDepth:
case PixelDepth: {
TQPaintDeviceMetrics m(TQApplication::desktop());
return Number(m.depth());
}
case AvailLeft: {
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
TQRect clipped = info.workArea().intersect(sg);
return Number(clipped.x()-sg.x());
#else
return Number(10);
#endif
}
case AvailTop: {
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
TQRect clipped = info.workArea().intersect(sg);
return Number(clipped.y()-sg.y());
#else
return Number(10);
#endif
}
case AvailHeight: {
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
TQRect clipped = info.workArea().intersect(sg);
return Number(clipped.height());
#else
return Number(100);
#endif
}
case AvailWidth: {
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
TQRect clipped = info.workArea().intersect(sg);
return Number(clipped.width());
#else
return Number(100);
#endif
}
default:
kdDebug(6070) << "WARNING: Screen::getValueProperty unhandled token " << token << endl;
return Undefined();
}
}
////////////////////// Window Object ////////////////////////
const ClassInfo Window::info = { "Window", &DOMAbstractView::info, &WindowTable, 0 };
/*
@begin WindowTable 162
atob Window::AToB DontDelete|Function 1
btoa Window::BToA DontDelete|Function 1
closed Window::Closed DontDelete|ReadOnly
crypto Window::Crypto DontDelete|ReadOnly
defaultStatus Window::DefaultStatus DontDelete
defaultstatus Window::DefaultStatus DontDelete
status Window::Status DontDelete
document Window::Document DontDelete|ReadOnly
frameElement Window::FrameElement DontDelete|ReadOnly
frames Window::Frames DontDelete|ReadOnly
history Window::_History DontDelete|ReadOnly
external Window::_External DontDelete|ReadOnly
event Window::Event DontDelete|ReadOnly
innerHeight Window::InnerHeight DontDelete|ReadOnly
innerWidth Window::InnerWidth DontDelete|ReadOnly
length Window::Length DontDelete|ReadOnly
location Window::_Location DontDelete
name Window::Name DontDelete
navigator Window::_Navigator DontDelete|ReadOnly
clientInformation Window::ClientInformation DontDelete|ReadOnly
konqueror Window::_Konqueror DontDelete|ReadOnly
offscreenBuffering Window::OffscreenBuffering DontDelete|ReadOnly
opener Window::Opener DontDelete|ReadOnly
outerHeight Window::OuterHeight DontDelete|ReadOnly
outerWidth Window::OuterWidth DontDelete|ReadOnly
pageXOffset Window::PageXOffset DontDelete|ReadOnly
pageYOffset Window::PageYOffset DontDelete|ReadOnly
parent Window::Parent DontDelete|ReadOnly
personalbar Window::Personalbar DontDelete|ReadOnly
screenX Window::ScreenX DontDelete|ReadOnly
screenY Window::ScreenY DontDelete|ReadOnly
scrollbars Window::Scrollbars DontDelete|ReadOnly
scroll Window::Scroll DontDelete|Function 2
scrollBy Window::ScrollBy DontDelete|Function 2
scrollTo Window::ScrollTo DontDelete|Function 2
scrollX Window::ScrollX DontDelete|ReadOnly
scrollY Window::ScrollY DontDelete|ReadOnly
moveBy Window::MoveBy DontDelete|Function 2
moveTo Window::MoveTo DontDelete|Function 2
resizeBy Window::ResizeBy DontDelete|Function 2
resizeTo Window::ResizeTo DontDelete|Function 2
self Window::Self DontDelete|ReadOnly
window Window::_Window DontDelete|ReadOnly
top Window::Top DontDelete|ReadOnly
screen Window::_Screen DontDelete|ReadOnly
alert Window::Alert DontDelete|Function 1
confirm Window::Confirm DontDelete|Function 1
prompt Window::Prompt DontDelete|Function 2
open Window::Open DontDelete|Function 3
setTimeout Window::SetTimeout DontDelete|Function 2
clearTimeout Window::ClearTimeout DontDelete|Function 1
focus Window::Focus DontDelete|Function 0
blur Window::Blur DontDelete|Function 0
close Window::Close DontDelete|Function 0
setInterval Window::SetInterval DontDelete|Function 2
clearInterval Window::ClearInterval DontDelete|Function 1
captureEvents Window::CaptureEvents DontDelete|Function 0
releaseEvents Window::ReleaseEvents DontDelete|Function 0
print Window::Print DontDelete|Function 0
addEventListener Window::AddEventListener DontDelete|Function 3
removeEventListener Window::RemoveEventListener DontDelete|Function 3
# Normally found in prototype. Add to window object itself to make them
# accessible in closed and cross-site windows
valueOf Window::ValueOf DontDelete|Function 0
toString Window::ToString DontDelete|Function 0
# IE extension
navigate Window::Navigate DontDelete|Function 1
# Mozilla extension
sidebar Window::SideBar DontDelete|ReadOnly
getComputedStyle Window::GetComputedStyle DontDelete|Function 2
# Warning, when adding a function to this object you need to add a case in Window::get
# Event handlers
# IE also has: onactivate, onbefore/afterprint, onbeforedeactivate/unload, oncontrolselect,
# ondeactivate, onhelp, onmovestart/end, onresizestart/end, onscroll.
# It doesn't have onabort, onchange, ondragdrop (but NS has that last one).
onabort Window::Onabort DontDelete
onblur Window::Onblur DontDelete
onchange Window::Onchange DontDelete
onclick Window::Onclick DontDelete
ondblclick Window::Ondblclick DontDelete
ondragdrop Window::Ondragdrop DontDelete
onerror Window::Onerror DontDelete
onfocus Window::Onfocus DontDelete
onkeydown Window::Onkeydown DontDelete
onkeypress Window::Onkeypress DontDelete
onkeyup Window::Onkeyup DontDelete
onload Window::Onload DontDelete
onmousedown Window::Onmousedown DontDelete
onmousemove Window::Onmousemove DontDelete
onmouseout Window::Onmouseout DontDelete
onmouseover Window::Onmouseover DontDelete
onmouseup Window::Onmouseup DontDelete
onmove Window::Onmove DontDelete
onreset Window::Onreset DontDelete
onresize Window::Onresize DontDelete
onselect Window::Onselect DontDelete
onsubmit Window::Onsubmit DontDelete
onunload Window::Onunload DontDelete
# Constructors/constant tables
Node Window::Node DontDelete
Event Window::EventCtor DontDelete
Range Window::Range DontDelete
NodeFilter Window::NodeFilter DontDelete
DOMException Window::DOMException DontDelete
CSSRule Window::CSSRule DontDelete
MutationEvent Window::MutationEventCtor DontDelete
KeyboardEvent Window::KeyboardEventCtor DontDelete
EventException Window::EventExceptionCtor DontDelete
Image Window::Image DontDelete|ReadOnly
Option Window::Option DontDelete|ReadOnly
XMLHttpRequest Window::XMLHttpRequest DontDelete|ReadOnly
XMLSerializer Window::XMLSerializer DontDelete|ReadOnly
DOMParser Window::DOMParser DontDelete|ReadOnly
# Mozilla dom emulation ones.
Element Window::ElementCtor DontDelete
Document Window::DocumentCtor DontDelete
#this one is an alias since we don't have a separate XMLDocument
XMLDocument Window::DocumentCtor DontDelete
HTMLElement Window::HTMLElementCtor DontDelete
HTMLDocument Window::HTMLDocumentCtor DontDelete
HTMLHtmlElement Window::HTMLHtmlElementCtor DontDelete
HTMLHeadElement Window::HTMLHeadElementCtor DontDelete
HTMLLinkElement Window::HTMLLinkElementCtor DontDelete
HTMLTitleElement Window::HTMLTitleElementCtor DontDelete
HTMLMetaElement Window::HTMLMetaElementCtor DontDelete
HTMLBaseElement Window::HTMLBaseElementCtor DontDelete
HTMLIsIndexElement Window::HTMLIsIndexElementCtor DontDelete
HTMLStyleElement Window::HTMLStyleElementCtor DontDelete
HTMLBodyElement Window::HTMLBodyElementCtor DontDelete
HTMLFormElement Window::HTMLFormElementCtor DontDelete
HTMLSelectElement Window::HTMLSelectElementCtor DontDelete
HTMLOptGroupElement Window::HTMLOptGroupElementCtor DontDelete
HTMLOptionElement Window::HTMLOptionElementCtor DontDelete
HTMLInputElement Window::HTMLInputElementCtor DontDelete
HTMLTextAreaElement Window::HTMLTextAreaElementCtor DontDelete
HTMLButtonElement Window::HTMLButtonElementCtor DontDelete
HTMLLabelElement Window::HTMLLabelElementCtor DontDelete
HTMLFieldSetElement Window::HTMLFieldSetElementCtor DontDelete
HTMLLegendElement Window::HTMLLegendElementCtor DontDelete
HTMLUListElement Window::HTMLUListElementCtor DontDelete
HTMLOListElement Window::HTMLOListElementCtor DontDelete
HTMLDListElement Window::HTMLDListElementCtor DontDelete
HTMLDirectoryElement Window::HTMLDirectoryElementCtor DontDelete
HTMLMenuElement Window::HTMLMenuElementCtor DontDelete
HTMLLIElement Window::HTMLLIElementCtor DontDelete
HTMLDivElement Window::HTMLDivElementCtor DontDelete
HTMLParagraphElement Window::HTMLParagraphElementCtor DontDelete
HTMLHeadingElement Window::HTMLHeadingElementCtor DontDelete
HTMLBlockQuoteElement Window::HTMLBlockQuoteElementCtor DontDelete
HTMLQuoteElement Window::HTMLQuoteElementCtor DontDelete
HTMLPreElement Window::HTMLPreElementCtor DontDelete
HTMLBRElement Window::HTMLBRElementCtor DontDelete
HTMLBaseFontElement Window::HTMLBaseFontElementCtor DontDelete
HTMLFontElement Window::HTMLFontElementCtor DontDelete
HTMLHRElement Window::HTMLHRElementCtor DontDelete
HTMLModElement Window::HTMLModElementCtor DontDelete
HTMLAnchorElement Window::HTMLAnchorElementCtor DontDelete
HTMLImageElement Window::HTMLImageElementCtor DontDelete
HTMLObjectElement Window::HTMLObjectElementCtor DontDelete
HTMLParamElement Window::HTMLParamElementCtor DontDelete
HTMLAppletElement Window::HTMLAppletElementCtor DontDelete
HTMLMapElement Window::HTMLMapElementCtor DontDelete
HTMLAreaElement Window::HTMLAreaElementCtor DontDelete
HTMLScriptElement Window::HTMLScriptElementCtor DontDelete
HTMLTableElement Window::HTMLTableElementCtor DontDelete
HTMLTableCaptionElement Window::HTMLTableCaptionElementCtor DontDelete
HTMLTableColElement Window::HTMLTableColElementCtor DontDelete
HTMLTableSectionElement Window::HTMLTableSectionElementCtor DontDelete
HTMLTableRowElement Window::HTMLTableRowElementCtor DontDelete
HTMLTableCellElement Window::HTMLTableCellElementCtor DontDelete
HTMLFrameSetElement Window::HTMLFrameSetElementCtor DontDelete
HTMLLayerElement Window::HTMLLayerElementCtor DontDelete
HTMLFrameElement Window::HTMLFrameElementCtor DontDelete
HTMLIFrameElement Window::HTMLIFrameElementCtor DontDelete
CSSStyleDeclaration Window::CSSStyleDeclarationCtor DontDelete
@end
*/
IMPLEMENT_PROTOFUNC_DOM(WindowFunc)
Window::Window(tdehtml::ChildFrame *p)
: ObjectImp(/*no proto*/), m_frame(p), screen(0), history(0), external(0), m_frames(0), loc(0), m_evt(0)
{
winq = new WindowQObject(this);
//kdDebug(6070) << "Window::Window this=" << this << " part=" << m_part << " " << m_part->name() << endl;
}
Window::~Window()
{
delete winq;
}
Window *Window::retrieveWindow(KParts::ReadOnlyPart *p)
{
Object obj = Object::dynamicCast( retrieve( p ) );
#ifndef NDEBUG
// obj should never be null, except when javascript has been disabled in that part.
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(p);
if ( part && part->jScriptEnabled() )
{
assert( obj.isValid() );
#ifndef QWS
assert( dynamic_cast<KJS::Window*>(obj.imp()) ); // type checking
#endif
}
#endif
if ( !obj.isValid() ) // JS disabled
return 0;
return static_cast<KJS::Window*>(obj.imp());
}
Window *Window::retrieveActive(ExecState *exec)
{
ValueImp *imp = exec->interpreter()->globalObject().imp();
assert( imp );
#ifndef QWS
assert( dynamic_cast<KJS::Window*>(imp) );
#endif
return static_cast<KJS::Window*>(imp);
}
Value Window::retrieve(KParts::ReadOnlyPart *p)
{
assert(p);
KHTMLPart * part = ::tqqt_cast<KHTMLPart *>(p);
KJSProxy *proxy = 0L;
if (!part) {
part = ::tqqt_cast<KHTMLPart *>(p->parent());
if (part)
proxy = part->framejScript(p);
} else
proxy = part->jScript();
if (proxy) {
#ifdef KJS_VERBOSE
kdDebug(6070) << "Window::retrieve part=" << part << " '" << part->name() << "' interpreter=" << proxy->interpreter() << " window=" << proxy->interpreter()->globalObject().imp() << endl;
#endif
return proxy->interpreter()->globalObject(); // the Global object is the "window"
} else {
#ifdef KJS_VERBOSE
kdDebug(6070) << "Window::retrieve part=" << p << " '" << p->name() << "' no jsproxy." << endl;
#endif
return Undefined(); // This can happen with JS disabled on the domain of that window
}
}
Location *Window::location() const
{
if (!loc)
const_cast<Window*>(this)->loc = new Location(m_frame);
return loc;
}
ObjectImp* Window::frames( ExecState* exec ) const
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (part)
return m_frames ? m_frames :
(const_cast<Window*>(this)->m_frames = new FrameArray(exec, part));
return 0L;
}
// reference our special objects during garbage collection
void Window::mark()
{
ObjectImp::mark();
if (screen && !screen->marked())
screen->mark();
if (history && !history->marked())
history->mark();
if (external && !external->marked())
external->mark();
if (m_frames && !m_frames->marked())
m_frames->mark();
//kdDebug(6070) << "Window::mark " << this << " marking loc=" << loc << endl;
if (loc && !loc->marked())
loc->mark();
if (winq)
winq->mark();
}
bool Window::hasProperty(ExecState *exec, const Identifier &p) const
{
// we don't want any operations on a closed window
if (m_frame.isNull() || m_frame->m_part.isNull())
return ( p == "closed" );
if (ObjectImp::hasProperty(exec, p))
return true;
if (Lookup::findEntry(&WindowTable, p))
return true;
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part)
return false;
TQString q = p.qstring();
if (part->findFramePart(p.qstring()))
return true;
// allow window[1] or parent[1] etc. (#56983)
bool ok;
unsigned int i = p.toArrayIndex(&ok);
if (ok) {
TQPtrList<KParts::ReadOnlyPart> frames = part->frames();
unsigned int len = frames.count();
if (i < len)
return true;
}
// allow shortcuts like 'Image1' instead of document.images.Image1
if (part->document().isHTMLDocument()) { // might be XML
DOM::HTMLDocument doc = part->htmlDocument();
// Keep in sync with tryGet
if (static_cast<DOM::DocumentImpl*>(doc.handle())->underDocNamedCache().get(p.qstring()))
return true;
return !doc.getElementById(p.string()).isNull();
}
return false;
}
UString Window::toString(ExecState *) const
{
return "[object Window]";
}
Value Window::get(ExecState *exec, const Identifier &p) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "Window("<<this<<")::get " << p.qstring() << endl;
#endif
// we want only limited operations on a closed window
if (m_frame.isNull() || m_frame->m_part.isNull()) {
const HashEntry* entry = Lookup::findEntry(&WindowTable, p);
if (entry) {
switch (entry->value) {
case Closed:
return Boolean(true);
case _Location:
return Null();
case ValueOf:
case ToString:
return lookupOrCreateFunction<WindowFunc>(exec,p, this, entry->value,
entry->params, entry->attr);
default:
break;
}
}
return Undefined();
}
// Look for overrides first
ValueImp *val = getDirect(p);
if (val) {
//kdDebug(6070) << "Window::get found dynamic property '" << p.ascii() << "'" << endl;
return isSafeScript(exec) ? Value(val) : Undefined();
}
const HashEntry* entry = Lookup::findEntry(&WindowTable, p);
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
// properties that work on all windows
if (entry) {
// ReadOnlyPart first
switch(entry->value) {
case Closed:
return Boolean( false );
case _Location:
// No isSafeScript test here, we must be able to _set_ location.href (#49819)
return Value(location());
case _Window:
case Self:
return retrieve(m_frame->m_part);
default:
break;
}
if (!part)
return Undefined();
// KHTMLPart next
switch(entry->value) {
case Frames:
return Value(frames(exec));
case Opener:
if (!part->opener())
return Null(); // ### a null Window might be better, but == null
else // doesn't work yet
return retrieve(part->opener());
case Parent:
return retrieve(part->parentPart() ? part->parentPart() : (KHTMLPart*)part);
case Top: {
KHTMLPart *p = part;
while (p->parentPart())
p = p->parentPart();
return retrieve(p);
}
case Alert:
case Confirm:
case Prompt:
case Open:
case Close:
case Focus:
case Blur:
case AToB:
case BToA:
case GetComputedStyle:
case ValueOf:
case ToString:
return lookupOrCreateFunction<WindowFunc>(exec,p,this,entry->value,entry->params,entry->attr);
default:
break;
}
} else if (!part) {
// not a KHTMLPart
TQString rvalue;
KParts::LiveConnectExtension::Type rtype;
unsigned long robjid;
if (m_frame->m_liveconnect &&
isSafeScript(exec) &&
m_frame->m_liveconnect->get(0, p.qstring(), rtype, robjid, rvalue))
return getLiveConnectValue(m_frame->m_liveconnect, p.qstring(), rtype, rvalue, robjid);
return Undefined();
}
// properties that only work on safe windows
if (isSafeScript(exec) && entry)
{
//kdDebug(6070) << "token: " << entry->value << endl;
switch( entry->value ) {
case Crypto:
return Undefined(); // ###
case DefaultStatus:
return String(UString(part->jsDefaultStatusBarText()));
case Status:
return String(UString(part->jsStatusBarText()));
case Document:
if (part->document().isNull()) {
kdDebug(6070) << "Document.write: adding <HTML><BODY> to create document" << endl;
part->begin();
part->write("<HTML><BODY>");
part->end();
}
return getDOMNode(exec,part->document());
case FrameElement:
if (m_frame->m_frame)
return getDOMNode(exec,m_frame->m_frame->element());
else
return Undefined();
case Node:
return NodeConstructor::self(exec);
case Range:
return getRangeConstructor(exec);
case NodeFilter:
return getNodeFilterConstructor(exec);
case DOMException:
return getDOMExceptionConstructor(exec);
case CSSRule:
return getCSSRuleConstructor(exec);
case ElementCtor:
return ElementPseudoCtor::self(exec);
case HTMLElementCtor:
return HTMLElementPseudoCtor::self(exec);
case HTMLHtmlElementCtor:
return HTMLHtmlElementPseudoCtor::self(exec);
case HTMLHeadElementCtor:
return HTMLHeadElementPseudoCtor::self(exec);
case HTMLLinkElementCtor:
return HTMLLinkElementPseudoCtor::self(exec);
case HTMLTitleElementCtor:
return HTMLTitleElementPseudoCtor::self(exec);
case HTMLMetaElementCtor:
return HTMLMetaElementPseudoCtor::self(exec);
case HTMLBaseElementCtor:
return HTMLBaseElementPseudoCtor::self(exec);
case HTMLIsIndexElementCtor:
return HTMLIsIndexElementPseudoCtor::self(exec);
case HTMLStyleElementCtor:
return HTMLStyleElementPseudoCtor::self(exec);
case HTMLBodyElementCtor:
return HTMLBodyElementPseudoCtor::self(exec);
case HTMLFormElementCtor:
return HTMLFormElementPseudoCtor::self(exec);
case HTMLSelectElementCtor:
return HTMLSelectElementPseudoCtor::self(exec);
case HTMLOptGroupElementCtor:
return HTMLOptGroupElementPseudoCtor::self(exec);
case HTMLOptionElementCtor:
return HTMLOptionElementPseudoCtor::self(exec);
case HTMLInputElementCtor:
return HTMLInputElementPseudoCtor::self(exec);
case HTMLTextAreaElementCtor:
return HTMLTextAreaElementPseudoCtor::self(exec);
case HTMLButtonElementCtor:
return HTMLButtonElementPseudoCtor::self(exec);
case HTMLLabelElementCtor:
return HTMLLabelElementPseudoCtor::self(exec);
case HTMLFieldSetElementCtor:
return HTMLFieldSetElementPseudoCtor::self(exec);
case HTMLLegendElementCtor:
return HTMLLegendElementPseudoCtor::self(exec);
case HTMLUListElementCtor:
return HTMLUListElementPseudoCtor::self(exec);
case HTMLOListElementCtor:
return HTMLOListElementPseudoCtor::self(exec);
case HTMLDListElementCtor:
return HTMLDListElementPseudoCtor::self(exec);
case HTMLDirectoryElementCtor:
return HTMLDirectoryElementPseudoCtor::self(exec);
case HTMLMenuElementCtor:
return HTMLMenuElementPseudoCtor::self(exec);
case HTMLLIElementCtor:
return HTMLLIElementPseudoCtor::self(exec);
case HTMLDivElementCtor:
return HTMLDivElementPseudoCtor::self(exec);
case HTMLParagraphElementCtor:
return HTMLParagraphElementPseudoCtor::self(exec);
case HTMLHeadingElementCtor:
return HTMLHeadingElementPseudoCtor::self(exec);
case HTMLBlockQuoteElementCtor:
return HTMLBlockQuoteElementPseudoCtor::self(exec);
case HTMLQuoteElementCtor:
return HTMLQuoteElementPseudoCtor::self(exec);
case HTMLPreElementCtor:
return HTMLPreElementPseudoCtor::self(exec);
case HTMLBRElementCtor:
return HTMLBRElementPseudoCtor::self(exec);
case HTMLBaseFontElementCtor:
return HTMLBaseFontElementPseudoCtor::self(exec);
case HTMLFontElementCtor:
return HTMLFontElementPseudoCtor::self(exec);
case HTMLHRElementCtor:
return HTMLHRElementPseudoCtor::self(exec);
case HTMLModElementCtor:
return HTMLModElementPseudoCtor::self(exec);
case HTMLAnchorElementCtor:
return HTMLAnchorElementPseudoCtor::self(exec);
case HTMLImageElementCtor:
return HTMLImageElementPseudoCtor::self(exec);
case HTMLObjectElementCtor:
return HTMLObjectElementPseudoCtor::self(exec);
case HTMLParamElementCtor:
return HTMLParamElementPseudoCtor::self(exec);
case HTMLAppletElementCtor:
return HTMLAppletElementPseudoCtor::self(exec);
case HTMLMapElementCtor:
return HTMLMapElementPseudoCtor::self(exec);
case HTMLAreaElementCtor:
return HTMLAreaElementPseudoCtor::self(exec);
case HTMLScriptElementCtor:
return HTMLScriptElementPseudoCtor::self(exec);
case HTMLTableElementCtor:
return HTMLTableElementPseudoCtor::self(exec);
case HTMLTableCaptionElementCtor:
return HTMLTableCaptionElementPseudoCtor::self(exec);
case HTMLTableColElementCtor:
return HTMLTableColElementPseudoCtor::self(exec);
case HTMLTableSectionElementCtor:
return HTMLTableSectionElementPseudoCtor::self(exec);
case HTMLTableRowElementCtor:
return HTMLTableRowElementPseudoCtor::self(exec);
case HTMLTableCellElementCtor:
return HTMLTableCellElementPseudoCtor::self(exec);
case HTMLFrameSetElementCtor:
return HTMLFrameSetElementPseudoCtor::self(exec);
case HTMLLayerElementCtor:
return HTMLLayerElementPseudoCtor::self(exec);
case HTMLFrameElementCtor:
return HTMLFrameElementPseudoCtor::self(exec);
case HTMLIFrameElementCtor:
return HTMLIFrameElementPseudoCtor::self(exec);
case DocumentCtor:
return DocumentPseudoCtor::self(exec);
case HTMLDocumentCtor:
return HTMLDocumentPseudoCtor::self(exec);
case CSSStyleDeclarationCtor:
return CSSStyleDeclarationPseudoCtor::self(exec);
case EventCtor:
return EventConstructor::self(exec);
case MutationEventCtor:
return getMutationEventConstructor(exec);
case KeyboardEventCtor:
return getKeyboardEventConstructor(exec);
case EventExceptionCtor:
return getEventExceptionConstructor(exec);
case _History:
return Value(history ? history :
(const_cast<Window*>(this)->history = new History(exec,part)));
case _External:
return Value(external ? external :
(const_cast<Window*>(this)->external = new External(exec,part)));
case Event:
if (m_evt)
return getDOMEvent(exec,*m_evt);
else {
#ifdef KJS_VERBOSE
kdDebug(6070) << "WARNING: window(" << this << "," << part->name() << ").event, no event!" << endl;
#endif
return Undefined();
}
case InnerHeight:
if (!part->view())
return Undefined();
tdehtml::RenderWidget::flushWidgetResizes(); // make sure frames have their final size
return Number(part->view()->visibleHeight());
case InnerWidth:
if (!part->view())
return Undefined();
tdehtml::RenderWidget::flushWidgetResizes(); // make sure frames have their final size
return Number(part->view()->visibleWidth());
case Length:
return Number(part->frames().count());
case Name:
return String(part->name());
case SideBar:
return Value(new MozillaSidebarExtension(exec, part));
case _Navigator:
case ClientInformation: {
// Store the navigator in the object so we get the same one each time.
Value nav( new Navigator(exec, part) );
const_cast<Window *>(this)->put(exec, "navigator", nav, DontDelete|ReadOnly|Internal);
const_cast<Window *>(this)->put(exec, "clientInformation", nav, DontDelete|ReadOnly|Internal);
return nav;
}
#ifdef Q_WS_QWS
case _Konqueror: {
Value k( new Konqueror(part) );
const_cast<Window *>(this)->put(exec, "konqueror", k, DontDelete|ReadOnly|Internal);
return k;
}
#endif
case OffscreenBuffering:
return Boolean(true);
case OuterHeight:
case OuterWidth:
{
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
if (!part->widget())
return Number(0);
KWin::WindowInfo inf = KWin::windowInfo(part->widget()->topLevelWidget()->winId());
return Number(entry->value == OuterHeight ?
inf.geometry().height() : inf.geometry().width());
#else
return Number(entry->value == OuterHeight ?
part->view()->height() : part->view()->width());
#endif
}
case PageXOffset:
return Number(part->view()->contentsX());
case PageYOffset:
return Number(part->view()->contentsY());
case Personalbar:
return Undefined(); // ###
case ScreenLeft:
case ScreenX: {
if (!part->view())
return Undefined();
TQRect sg = TDEGlobalSettings::desktopGeometry(part->view());
return Number(part->view()->mapToGlobal(TQPoint(0,0)).x() + sg.x());
}
case ScreenTop:
case ScreenY: {
if (!part->view())
return Undefined();
TQRect sg = TDEGlobalSettings::desktopGeometry(part->view());
return Number(part->view()->mapToGlobal(TQPoint(0,0)).y() + sg.y());
}
case ScrollX: {
if (!part->view())
return Undefined();
return Number(part->view()->contentsX());
}
case ScrollY: {
if (!part->view())
return Undefined();
return Number(part->view()->contentsY());
}
case Scrollbars:
return Undefined(); // ###
case _Screen:
return Value(screen ? screen :
(const_cast<Window*>(this)->screen = new Screen(exec)));
case Image:
return Value(new ImageConstructorImp(exec, part->document()));
case Option:
return Value(new OptionConstructorImp(exec, part->document()));
case XMLHttpRequest:
return Value(new XMLHttpRequestConstructorImp(exec, part->document()));
case XMLSerializer:
return Value(new XMLSerializerConstructorImp(exec));
case DOMParser:
return Value(new DOMParserConstructorImp(exec, part->xmlDocImpl()));
case Scroll: // compatibility
case ScrollBy:
case ScrollTo:
case MoveBy:
case MoveTo:
case ResizeBy:
case ResizeTo:
case CaptureEvents:
case ReleaseEvents:
case AddEventListener:
case RemoveEventListener:
case SetTimeout:
case ClearTimeout:
case SetInterval:
case ClearInterval:
case Print:
return lookupOrCreateFunction<WindowFunc>(exec,p,this,entry->value,entry->params,entry->attr);
// IE extension
case Navigate:
// Disabled in NS-compat mode. Supported by default - can't hurt, unless someone uses
// if (navigate) to test for IE (unlikely).
if ( exec->interpreter()->compatMode() == Interpreter::NetscapeCompat )
return Undefined();
return lookupOrCreateFunction<WindowFunc>(exec,p,this,entry->value,entry->params,entry->attr);
case Onabort:
return getListener(exec,DOM::EventImpl::ABORT_EVENT);
case Onblur:
return getListener(exec,DOM::EventImpl::BLUR_EVENT);
case Onchange:
return getListener(exec,DOM::EventImpl::CHANGE_EVENT);
case Onclick:
return getListener(exec,DOM::EventImpl::KHTML_ECMA_CLICK_EVENT);
case Ondblclick:
return getListener(exec,DOM::EventImpl::KHTML_ECMA_DBLCLICK_EVENT);
case Ondragdrop:
return getListener(exec,DOM::EventImpl::KHTML_DRAGDROP_EVENT);
case Onerror:
return getListener(exec,DOM::EventImpl::ERROR_EVENT);
case Onfocus:
return getListener(exec,DOM::EventImpl::FOCUS_EVENT);
case Onkeydown:
return getListener(exec,DOM::EventImpl::KEYDOWN_EVENT);
case Onkeypress:
return getListener(exec,DOM::EventImpl::KEYPRESS_EVENT);
case Onkeyup:
return getListener(exec,DOM::EventImpl::KEYUP_EVENT);
case Onload:
return getListener(exec,DOM::EventImpl::LOAD_EVENT);
case Onmousedown:
return getListener(exec,DOM::EventImpl::MOUSEDOWN_EVENT);
case Onmousemove:
return getListener(exec,DOM::EventImpl::MOUSEMOVE_EVENT);
case Onmouseout:
return getListener(exec,DOM::EventImpl::MOUSEOUT_EVENT);
case Onmouseover:
return getListener(exec,DOM::EventImpl::MOUSEOVER_EVENT);
case Onmouseup:
return getListener(exec,DOM::EventImpl::MOUSEUP_EVENT);
case Onmove:
return getListener(exec,DOM::EventImpl::KHTML_MOVE_EVENT);
case Onreset:
return getListener(exec,DOM::EventImpl::RESET_EVENT);
case Onresize:
return getListener(exec,DOM::EventImpl::RESIZE_EVENT);
case Onselect:
return getListener(exec,DOM::EventImpl::SELECT_EVENT);
case Onsubmit:
return getListener(exec,DOM::EventImpl::SUBMIT_EVENT);
case Onunload:
return getListener(exec,DOM::EventImpl::UNLOAD_EVENT);
}
}
// doing the remainder of ObjectImp::get() that is not covered by
// the getDirect() call above.
// #### guessed position. move further up or down?
Object proto = Object::dynamicCast(prototype());
assert(proto.isValid());
if (p == specialPrototypePropertyName)
return isSafeScript(exec) ? Value(proto) : Undefined();
Value val2 = proto.get(exec, p);
if (!val2.isA(UndefinedType)) {
return isSafeScript(exec) ? val2 : Undefined();
}
KParts::ReadOnlyPart *rop = part->findFramePart( p.qstring() );
if (rop)
return retrieve(rop);
// allow window[1] or parent[1] etc. (#56983)
bool ok;
unsigned int i = p.toArrayIndex(&ok);
if (ok) {
TQPtrList<KParts::ReadOnlyPart> frames = part->frames();
unsigned int len = frames.count();
if (i < len) {
KParts::ReadOnlyPart* frame = frames.at(i);
if (frame)
return Window::retrieve(frame);
}
}
//Check for images, forms, objects, etc.
if (isSafeScript(exec) && part->document().isHTMLDocument()) { // might be XML
DOM::DocumentImpl* docImpl = part->xmlDocImpl();
DOM::ElementMappingCache::ItemInfo* info = docImpl->underDocNamedCache().get(p.qstring());
if (info) {
//May be a false positive, but we can try to avoid doing it the hard way in
//simpler cases. The trickiness here is that the cache is kept under both
//name and id, but we sometimes ignore id for IE compat
DOM::DOMString propertyDOMString = p.string();
if (info->nd && DOM::HTMLMappedNameCollectionImpl::matchesName(info->nd,
DOM::HTMLCollectionImpl::WINDOW_NAMED_ITEMS, propertyDOMString)) {
return getDOMNode(exec, info->nd);
} else {
//Can't tell it just like that, so better go through collection and count stuff. This is the slow path...
DOM::HTMLMappedNameCollection coll(docImpl, DOM::HTMLCollectionImpl::WINDOW_NAMED_ITEMS, propertyDOMString);
if (coll.length() == 1)
return getDOMNode(exec, coll.firstItem());
else if (coll.length() > 1)
return getHTMLCollection(exec, coll);
}
}
DOM::Element element = part->document().getElementById(p.string());
if ( !element.isNull() )
return getDOMNode(exec, element );
}
// This isn't necessarily a bug. Some code uses if(!window.blah) window.blah=1
// But it can also mean something isn't loaded or implemented, hence the WARNING to help grepping.
#ifdef KJS_VERBOSE
kdDebug(6070) << "WARNING: Window::get property not found: " << p.qstring() << endl;
#endif
return Undefined();
}
void Window::put(ExecState* exec, const Identifier &propertyName, const Value &value, int attr)
{
// we don't want any operations on a closed window
if (m_frame.isNull() || m_frame->m_part.isNull()) {
// ### throw exception? allow setting of some props like location?
return;
}
// Called by an internal KJS call (e.g. InterpreterImp's constructor) ?
// If yes, save time and jump directly to ObjectImp.
if ( (attr != None && attr != DontDelete) ||
// Same thing if we have a local override (e.g. "var location")
( isSafeScript( exec ) && ObjectImp::getDirect(propertyName) ) )
{
ObjectImp::put( exec, propertyName, value, attr );
return;
}
const HashEntry* entry = Lookup::findEntry(&WindowTable, propertyName);
if (entry && !m_frame.isNull() && !m_frame->m_part.isNull())
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "Window("<<this<<")::put " << propertyName.qstring() << endl;
#endif
switch( entry->value) {
case _Location:
goURL(exec, value.toString(exec).qstring(), false /*don't lock history*/);
return;
default:
break;
}
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (part) {
switch( entry->value ) {
case Status: {
if (isSafeScript(exec) && part->settings()->windowStatusPolicy(part->url().host())
== KHTMLSettings::KJSWindowStatusAllow) {
String s = value.toString(exec);
part->setJSStatusBarText(s.value().qstring());
}
return;
}
case DefaultStatus: {
if (isSafeScript(exec) && part->settings()->windowStatusPolicy(part->url().host())
== KHTMLSettings::KJSWindowStatusAllow) {
String s = value.toString(exec);
part->setJSDefaultStatusBarText(s.value().qstring());
}
return;
}
case Onabort:
if (isSafeScript(exec))
setListener(exec, DOM::EventImpl::ABORT_EVENT,value);
return;
case Onblur:
if (isSafeScript(exec))
setListener(exec, DOM::EventImpl::BLUR_EVENT,value);
return;
case Onchange:
if (isSafeScript(exec))
setListener(exec, DOM::EventImpl::CHANGE_EVENT,value);
return;
case Onclick:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KHTML_ECMA_CLICK_EVENT,value);
return;
case Ondblclick:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KHTML_ECMA_DBLCLICK_EVENT,value);
return;
case Ondragdrop:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KHTML_DRAGDROP_EVENT,value);
return;
case Onerror:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::ERROR_EVENT,value);
return;
case Onfocus:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::FOCUS_EVENT,value);
return;
case Onkeydown:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KEYDOWN_EVENT,value);
return;
case Onkeypress:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KEYPRESS_EVENT,value);
return;
case Onkeyup:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KEYUP_EVENT,value);
return;
case Onload:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::LOAD_EVENT,value);
return;
case Onmousedown:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::MOUSEDOWN_EVENT,value);
return;
case Onmousemove:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::MOUSEMOVE_EVENT,value);
return;
case Onmouseout:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::MOUSEOUT_EVENT,value);
return;
case Onmouseover:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::MOUSEOVER_EVENT,value);
return;
case Onmouseup:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::MOUSEUP_EVENT,value);
return;
case Onmove:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::KHTML_MOVE_EVENT,value);
return;
case Onreset:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::RESET_EVENT,value);
return;
case Onresize:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::RESIZE_EVENT,value);
return;
case Onselect:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::SELECT_EVENT,value);
return;
case Onsubmit:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::SUBMIT_EVENT,value);
return;
case Onunload:
if (isSafeScript(exec))
setListener(exec,DOM::EventImpl::UNLOAD_EVENT,value);
return;
case Name:
if (isSafeScript(exec))
part->setName( value.toString(exec).qstring().local8Bit().data() );
return;
default:
break;
}
}
}
if (m_frame->m_liveconnect &&
isSafeScript(exec) &&
m_frame->m_liveconnect->put(0, propertyName.qstring(), value.toString(exec).qstring()))
return;
if (isSafeScript(exec)) {
//kdDebug(6070) << "Window("<<this<<")::put storing " << propertyName.qstring() << endl;
ObjectImp::put(exec, propertyName, value, attr);
}
}
bool Window::toBoolean(ExecState *) const
{
return !m_frame.isNull() && !m_frame->m_part.isNull();
}
DOM::AbstractView Window::toAbstractView() const
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part)
return DOM::AbstractView();
return part->document().defaultView();
}
void Window::scheduleClose()
{
kdDebug(6070) << "Window::scheduleClose window.close() " << m_frame << endl;
Q_ASSERT(winq);
TQTimer::singleShot( 0, winq, TQT_SLOT( timeoutClose() ) );
}
void Window::closeNow()
{
if (m_frame.isNull() || m_frame->m_part.isNull()) {
kdDebug(6070) << k_funcinfo << "part is deleted already" << endl;
} else {
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part) {
kdDebug(6070) << "closeNow on non KHTML part" << endl;
} else {
//kdDebug(6070) << k_funcinfo << " -> closing window" << endl;
// We want to make sure that window.open won't find this part by name.
part->setName( 0 );
part->deleteLater();
part = 0;
}
}
}
void Window::afterScriptExecution()
{
DOM::DocumentImpl::updateDocumentsRendering();
TQValueList<DelayedAction> delayedActions = m_delayed;
m_delayed.clear();
TQValueList<DelayedAction>::Iterator it = delayedActions.begin();
for ( ; it != delayedActions.end() ; ++it )
{
switch ((*it).actionId) {
case DelayedClose:
scheduleClose();
return; // stop here, in case of multiple actions
case DelayedGoHistory:
goHistory( (*it).param.toInt() );
break;
case NullAction:
// FIXME: anything needs to be done here? This is warning anyways.
break;
};
}
}
bool Window::checkIsSafeScript(KParts::ReadOnlyPart *activePart) const
{
if (m_frame.isNull() || m_frame->m_part.isNull()) { // part deleted ? can't grant access
kdDebug(6070) << "Window::isSafeScript: accessing deleted part !" << endl;
return false;
}
if (!activePart) {
kdDebug(6070) << "Window::isSafeScript: current interpreter's part is 0L!" << endl;
return false;
}
if ( activePart == m_frame->m_part ) // Not calling from another frame, no problem.
return true;
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part)
return true; // not a KHTMLPart
if ( part->document().isNull() )
return true; // allow to access a window that was just created (e.g. with window.open("about:blank"))
DOM::HTMLDocument thisDocument = part->htmlDocument();
if ( thisDocument.isNull() ) {
kdDebug(6070) << "Window::isSafeScript: trying to access an XML document !?" << endl;
return false;
}
KHTMLPart *activeKHTMLPart = ::tqqt_cast<KHTMLPart *>(activePart);
if (!activeKHTMLPart)
return true; // not a KHTMLPart
DOM::HTMLDocument actDocument = activeKHTMLPart->htmlDocument();
if ( actDocument.isNull() ) {
kdDebug(6070) << "Window::isSafeScript: active part has no document!" << endl;
return false;
}
DOM::DOMString actDomain = actDocument.domain();
DOM::DOMString thisDomain = thisDocument.domain();
if ( actDomain == thisDomain ) {
#ifdef KJS_VERBOSE
//kdDebug(6070) << "JavaScript: access granted, domain is '" << actDomain.string() << "'" << endl;
#endif
return true;
}
kdDebug(6070) << "WARNING: JavaScript: access denied for current frame '" << actDomain.string() << "' to frame '" << thisDomain.string() << "'" << endl;
// TODO after 3.1: throw security exception (exec->setException())
return false;
}
void Window::setListener(ExecState *exec, int eventId, Value func)
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part || !isSafeScript(exec))
return;
DOM::DocumentImpl *doc = static_cast<DOM::DocumentImpl*>(part->htmlDocument().handle());
if (!doc)
return;
doc->setHTMLWindowEventListener(eventId,getJSEventListener(func,true));
}
Value Window::getListener(ExecState *exec, int eventId) const
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part || !isSafeScript(exec))
return Undefined();
DOM::DocumentImpl *doc = static_cast<DOM::DocumentImpl*>(part->htmlDocument().handle());
if (!doc)
return Undefined();
DOM::EventListener *listener = doc->getHTMLWindowEventListener(eventId);
if (listener && static_cast<JSEventListener*>(listener)->listenerObjImp())
return static_cast<JSEventListener*>(listener)->listenerObj();
else
return Null();
}
JSEventListener *Window::getJSEventListener(const Value& val, bool html)
{
// This function is so hot that it's worth coding it directly with imps.
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part || val.type() != ObjectType)
return 0;
// It's ObjectType, so it must be valid.
Object listenerObject = Object::dynamicCast(val);
ObjectImp *listenerObjectImp = listenerObject.imp();
// 'listener' is not a simple ecma function. (Always use sanity checks: Better safe than sorry!)
if (!listenerObject.implementsCall() && part && part->jScript() && part->jScript()->interpreter())
{
Interpreter *interpreter = part->jScript()->interpreter();
// 'listener' probably is an EventListener object containing a 'handleEvent' function.
Value handleEventValue = listenerObject.get(interpreter->globalExec(), Identifier("handleEvent"));
Object handleEventObject = Object::dynamicCast(handleEventValue);
if(handleEventObject.isValid() && handleEventObject.implementsCall())
{
listenerObject = handleEventObject;
listenerObjectImp = handleEventObject.imp();
}
}
JSEventListener *existingListener = jsEventListeners[listenerObjectImp];
if (existingListener) {
if ( existingListener->isHTMLEventListener() != html )
// The existingListener will have the wrong type, so onclick= will behave like addEventListener or vice versa.
kdWarning() << "getJSEventListener: event listener already found but with html=" << !html << " - please report this, we thought it would never happen" << endl;
return existingListener;
}
// Note that the JSEventListener constructor adds it to our jsEventListeners list
return new JSEventListener(listenerObject, listenerObjectImp, Object(this), html);
}
JSLazyEventListener *Window::getJSLazyEventListener(const TQString& code, const TQString& name, DOM::NodeImpl *node)
{
return new JSLazyEventListener(code, name, Object(this), node);
}
void Window::clear( ExecState *exec )
{
delete winq;
winq = 0L;
// Get rid of everything, those user vars could hold references to DOM nodes
deleteAllProperties( exec );
// Break the dependency between the listeners and their object
TQPtrDictIterator<JSEventListener> it(jsEventListeners);
for (; it.current(); ++it)
it.current()->clear();
// Forget about the listeners (the DOM::NodeImpls will delete them)
jsEventListeners.clear();
if (m_frame) {
KJSProxy* proxy = m_frame->m_jscript;
if (proxy) // i.e. JS not disabled
{
winq = new WindowQObject(this);
// Now recreate a working global object for the next URL that will use us
KJS::Interpreter *interpreter = proxy->interpreter();
interpreter->initGlobalObject();
}
}
}
void Window::setCurrentEvent( DOM::Event *evt )
{
m_evt = evt;
//kdDebug(6070) << "Window " << this << " (part=" << m_part << ")::setCurrentEvent m_evt=" << evt << endl;
}
void Window::goURL(ExecState* exec, const TQString& url, bool lockHistory)
{
Window* active = Window::retrieveActive(exec);
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
KHTMLPart *active_part = ::tqqt_cast<KHTMLPart *>(active->part());
// Complete the URL using the "active part" (running interpreter)
if (active_part && part) {
if (url[0] == TQChar('#')) {
part->gotoAnchor(url.mid(1));
} else {
TQString dstUrl = active_part->htmlDocument().completeURL(url).string();
kdDebug(6070) << "Window::goURL dstUrl=" << dstUrl << endl;
// check if we're allowed to inject javascript
// SYNC check with tdehtml_part.cpp::slotRedirect!
if ( isSafeScript(exec) ||
dstUrl.find(TQString::fromLatin1("javascript:"), 0, false) != 0 )
part->scheduleRedirection(-1,
dstUrl,
lockHistory);
}
} else if (!part && !m_frame->m_part.isNull()) {
KParts::BrowserExtension *b = KParts::BrowserExtension::childObject(m_frame->m_part);
if (b)
b->emit openURLRequest(m_frame->m_frame->element()->getDocument()->completeURL(url));
kdDebug() << "goURL for ROPart" << endl;
}
}
KParts::ReadOnlyPart *Window::part() const {
return m_frame.isNull() ? 0L : static_cast<KParts::ReadOnlyPart *>(m_frame->m_part);
}
void Window::delayedGoHistory( int steps )
{
m_delayed.append( DelayedAction( DelayedGoHistory, steps ) );
}
void Window::goHistory( int steps )
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if(!part)
// TODO history readonlypart
return;
KParts::BrowserExtension *ext = part->browserExtension();
if(!ext)
return;
KParts::BrowserInterface *iface = ext->browserInterface();
if ( !iface )
return;
iface->callMethod( "goHistory(int)", steps );
//emit ext->goHistory(steps);
}
void KJS::Window::resizeTo(TQWidget* tl, int width, int height)
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if(!part)
// TODO resizeTo readonlypart
return;
KParts::BrowserExtension *ext = part->browserExtension();
if (!ext) {
kdDebug(6070) << "Window::resizeTo found no browserExtension" << endl;
return;
}
// Security check: within desktop limits and bigger than 100x100 (per spec)
if ( width < 100 || height < 100 ) {
kdDebug(6070) << "Window::resizeTo refused, window would be too small ("<<width<<","<<height<<")" << endl;
return;
}
TQRect sg = TDEGlobalSettings::desktopGeometry(tl);
if ( width > sg.width() || height > sg.height() ) {
kdDebug(6070) << "Window::resizeTo refused, window would be too big ("<<width<<","<<height<<")" << endl;
return;
}
kdDebug(6070) << "resizing to " << width << "x" << height << endl;
emit ext->resizeTopLevelWidget( width, height );
// If the window is out of the desktop, move it up/left
// (maybe we should use workarea instead of sg, otherwise the window ends up below kicker)
int right = tl->x() + tl->frameGeometry().width();
int bottom = tl->y() + tl->frameGeometry().height();
int moveByX = 0;
int moveByY = 0;
if ( right > sg.right() )
moveByX = - right + sg.right(); // always <0
if ( bottom > sg.bottom() )
moveByY = - bottom + sg.bottom(); // always <0
if ( moveByX || moveByY )
emit ext->moveTopLevelWidget( tl->x() + moveByX , tl->y() + moveByY );
}
Value Window::openWindow(ExecState *exec, const List& args)
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
if (!part)
return Undefined();
KHTMLView *widget = part->view();
Value v = args[0];
TQString str;
if (v.isValid() && !v.isA(UndefinedType))
str = v.toString(exec).qstring();
// prepare arguments
KURL url;
if (!str.isEmpty())
{
KHTMLPart* p = ::tqqt_cast<KHTMLPart *>(Window::retrieveActive(exec)->m_frame->m_part);
if ( p )
url = p->htmlDocument().completeURL(str).string();
if ( !p ||
!static_cast<DOM::DocumentImpl*>(p->htmlDocument().handle())->isURLAllowed(url.url()) )
return Undefined();
}
KHTMLSettings::KJSWindowOpenPolicy policy =
part->settings()->windowOpenPolicy(part->url().host());
if ( policy == KHTMLSettings::KJSWindowOpenAsk ) {
emit part->browserExtension()->requestFocus(part);
TQString caption;
if (!part->url().host().isEmpty())
caption = part->url().host() + " - ";
caption += i18n( "Confirmation: JavaScript Popup" );
if ( KMessageBox::questionYesNo(widget,
str.isEmpty() ?
i18n( "This site is requesting to open up a new browser "
"window via JavaScript.\n"
"Do you want to allow this?" ) :
i18n( "<qt>This site is requesting to open<p>%1</p>in a new browser window via JavaScript.<br />"
"Do you want to allow this?</qt>").arg(KStringHandler::csqueeze(url.htmlURL(), 100)),
caption, i18n("Allow"), i18n("Do Not Allow") ) == KMessageBox::Yes )
policy = KHTMLSettings::KJSWindowOpenAllow;
} else if ( policy == KHTMLSettings::KJSWindowOpenSmart )
{
// window.open disabled unless from a key/mouse event
if (static_cast<ScriptInterpreter *>(exec->interpreter())->isWindowOpenAllowed())
policy = KHTMLSettings::KJSWindowOpenAllow;
}
TQString frameName = args.size() > 1 ? args[1].toString(exec).qstring() : TQString("_blank");
v = args[2];
TQString features;
if (!v.isNull() && v.type() != UndefinedType && v.toString(exec).size() > 0) {
features = v.toString(exec).qstring();
// Buggy scripts have ' at beginning and end, cut those
if (features.startsWith("\'") && features.endsWith("\'"))
features = features.mid(1, features.length()-2);
}
if ( policy != KHTMLSettings::KJSWindowOpenAllow ) {
if ( url.isEmpty() )
part->setSuppressedPopupIndicator(true, 0);
else {
part->setSuppressedPopupIndicator(true, part);
m_suppressedWindowInfo.append( SuppressedWindowInfo( url, frameName, features ) );
}
return Undefined();
} else {
return executeOpenWindow(exec, url, frameName, features);
}
}
Value Window::executeOpenWindow(ExecState *exec, const KURL& url, const TQString& frameName, const TQString& features)
{
KHTMLPart *p = ::tqqt_cast<KHTMLPart *>(m_frame->m_part);
KHTMLView *widget = p->view();
KParts::WindowArgs winargs;
// scan feature argument
if (!features.isEmpty()) {
// specifying window params means false defaults
winargs.menuBarVisible = false;
winargs.toolBarsVisible = false;
winargs.statusBarVisible = false;
winargs.scrollBarsVisible = false;
TQStringList flist = TQStringList::split(',', features);
TQStringList::ConstIterator it = flist.begin();
while (it != flist.end()) {
TQString s = *it++;
TQString key, val;
int pos = s.find('=');
if (pos >= 0) {
key = s.left(pos).stripWhiteSpace().lower();
val = s.mid(pos + 1).stripWhiteSpace().lower();
TQRect screen = TDEGlobalSettings::desktopGeometry(widget->topLevelWidget());
if (key == "left" || key == "screenx") {
winargs.x = (int)val.toFloat() + screen.x();
if (winargs.x < screen.x() || winargs.x > screen.right())
winargs.x = screen.x(); // only safe choice until size is determined
} else if (key == "top" || key == "screeny") {
winargs.y = (int)val.toFloat() + screen.y();
if (winargs.y < screen.y() || winargs.y > screen.bottom())
winargs.y = screen.y(); // only safe choice until size is determined
} else if (key == "height") {
winargs.height = (int)val.toFloat() + 2*tqApp->style().pixelMetric( TQStyle::PM_DefaultFrameWidth ) + 2;
if (winargs.height > screen.height()) // should actually check workspace
winargs.height = screen.height();
if (winargs.height < 100)
winargs.height = 100;
} else if (key == "width") {
winargs.width = (int)val.toFloat() + 2*tqApp->style().pixelMetric( TQStyle::PM_DefaultFrameWidth ) + 2;
if (winargs.width > screen.width()) // should actually check workspace
winargs.width = screen.width();
if (winargs.width < 100)
winargs.width = 100;
} else {
goto boolargs;
}
continue;
} else {
// leaving away the value gives true
key = s.stripWhiteSpace().lower();
val = "1";
}
boolargs:
if (key == "menubar")
winargs.menuBarVisible = (val == "1" || val == "yes");
else if (key == "toolbar")
winargs.toolBarsVisible = (val == "1" || val == "yes");
else if (key == "location") // ### missing in WindowArgs
winargs.toolBarsVisible = (val == "1" || val == "yes");
else if (key == "status" || key == "statusbar")
winargs.statusBarVisible = (val == "1" || val == "yes");
else if (key == "scrollbars")
winargs.scrollBarsVisible = (val == "1" || val == "yes");
else if (key == "resizable")
winargs.resizable = (val == "1" || val == "yes");
else if (key == "fullscreen")
winargs.fullscreen = (val == "1" || val == "yes");
}
}
KParts::URLArgs uargs;
uargs.frameName = frameName;
if ( uargs.frameName.lower() == "_top" )
{
while ( p->parentPart() )
p = p->parentPart();
Window::retrieveWindow(p)->goURL(exec, url.url(), false /*don't lock history*/);
return Window::retrieve(p);
}
if ( uargs.frameName.lower() == "_parent" )
{
if ( p->parentPart() )
p = p->parentPart();
Window::retrieveWindow(p)->goURL(exec, url.url(), false /*don't lock history*/);
return Window::retrieve(p);
}
if ( uargs.frameName.lower() == "_self")
{
Window::retrieveWindow(p)->goURL(exec, url.url(), false /*don't lock history*/);
return Window::retrieve(p);
}
if ( uargs.frameName.lower() == "replace" )
{
Window::retrieveWindow(p)->goURL(exec, url.url(), true /*lock history*/);
return Window::retrieve(p);
}
uargs.serviceType = "text/html";
// request window (new or existing if framename is set)
KParts::ReadOnlyPart *newPart = 0L;
emit p->browserExtension()->createNewWindow(KURL(), uargs,winargs,newPart);
if (newPart && ::tqqt_cast<KHTMLPart*>(newPart)) {
KHTMLPart *tdehtmlpart = static_cast<KHTMLPart*>(newPart);
//tqDebug("opener set to %p (this Window's part) in new Window %p (this Window=%p)",part,win,window);
tdehtmlpart->setOpener(p);
tdehtmlpart->setOpenedByJS(true);
if (tdehtmlpart->document().isNull()) {
tdehtmlpart->begin();
tdehtmlpart->write("<HTML><BODY>");
tdehtmlpart->end();
if ( p->docImpl() ) {
//kdDebug(6070) << "Setting domain to " << p->docImpl()->domain().string() << endl;
tdehtmlpart->docImpl()->setDomain( p->docImpl()->domain());
tdehtmlpart->docImpl()->setBaseURL( p->docImpl()->baseURL() );
}
}
uargs.serviceType = TQString::null;
if (uargs.frameName.lower() == "_blank")
uargs.frameName = TQString::null;
if (!url.isEmpty())
emit tdehtmlpart->browserExtension()->openURLRequest(url,uargs);
return Window::retrieve(tdehtmlpart); // global object
} else
return Undefined();
}
void Window::forgetSuppressedWindows()
{
m_suppressedWindowInfo.clear();
}
void Window::showSuppressedWindows()
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>( m_frame->m_part );
KJS::Interpreter *interpreter = part->jScript()->interpreter();
ExecState *exec = interpreter->globalExec();
TQValueList<SuppressedWindowInfo> suppressedWindowInfo = m_suppressedWindowInfo;
m_suppressedWindowInfo.clear();
TQValueList<SuppressedWindowInfo>::Iterator it = suppressedWindowInfo.begin();
for ( ; it != suppressedWindowInfo.end() ; ++it ) {
executeOpenWindow(exec, (*it).url, (*it).frameName, (*it).features);
}
}
Value WindowFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( Window, thisObj );
// these should work no matter whether the window is already
// closed or not
if (id == Window::ValueOf || id == Window::ToString) {
return String("[object Window]");
}
Window *window = static_cast<Window *>(thisObj.imp());
TQString str, str2;
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(window->m_frame->m_part);
if (!part)
return Undefined();
KHTMLView *widget = part->view();
Value v = args[0];
UString s;
if (v.isValid() && !v.isA(UndefinedType)) {
s = v.toString(exec);
str = s.qstring();
}
TQString caption;
if (part && !part->url().host().isEmpty())
caption = part->url().host() + " - ";
caption += "JavaScript"; // TODO: i18n
// functions that work everywhere
switch(id) {
case Window::Alert:
if (!widget->dialogsAllowed())
return Undefined();
if ( part && part->xmlDocImpl() )
part->xmlDocImpl()->updateRendering();
if ( part )
emit part->browserExtension()->requestFocus(part);
KMessageBox::error(widget, TQStyleSheet::convertFromPlainText(str, TQStyleSheetItem::WhiteSpaceNormal), caption);
return Undefined();
case Window::Confirm:
if (!widget->dialogsAllowed())
return Undefined();
if ( part && part->xmlDocImpl() )
part->xmlDocImpl()->updateRendering();
if ( part )
emit part->browserExtension()->requestFocus(part);
return Boolean((KMessageBox::warningYesNo(widget, TQStyleSheet::convertFromPlainText(str), caption,
KStdGuiItem::ok(), KStdGuiItem::cancel()) == KMessageBox::Yes));
case Window::Prompt:
#ifndef KONQ_EMBEDDED
if (!widget->dialogsAllowed())
return Undefined();
if ( part && part->xmlDocImpl() )
part->xmlDocImpl()->updateRendering();
if ( part )
emit part->browserExtension()->requestFocus(part);
bool ok;
if (args.size() >= 2)
str2 = KInputDialog::getText(caption,
TQStyleSheet::convertFromPlainText(str),
args[1].toString(exec).qstring(), &ok, widget);
else
str2 = KInputDialog::getText(caption,
TQStyleSheet::convertFromPlainText(str),
TQString::null, &ok, widget);
if ( ok )
return String(str2);
else
return Null();
#else
return Undefined();
#endif
case Window::GetComputedStyle: {
if ( !part || !part->xmlDocImpl() )
return Undefined();
DOM::Node arg0 = toNode(args[0]);
if (arg0.nodeType() != DOM::Node::ELEMENT_NODE)
return Undefined(); // throw exception?
else
return getDOMCSSStyleDeclaration(exec, part->document().defaultView().getComputedStyle(static_cast<DOM::Element>(arg0),
args[1].toString(exec).string()));
}
case Window::Open:
return window->openWindow(exec, args);
case Window::Close: {
/* From http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm :
The close method closes only windows opened by JavaScript using the open method.
If you attempt to close any other window, a confirm is generated, which
lets the user choose whether the window closes.
This is a security feature to prevent "mail bombs" containing self.close().
However, if the window has only one document (the current one) in its
session history, the close is allowed without any confirm. This is a
special case for one-off windows that need to open other windows and
then dispose of themselves.
*/
bool doClose = false;
if (!part->openedByJS())
{
// To conform to the SPEC, we only ask if the window
// has more than one entry in the history (NS does that too).
History history(exec,part);
if ( history.get( exec, "length" ).toInt32(exec) <= 1 )
{
doClose = true;
}
else
{
// Can we get this dialog with tabs??? Does it close the window or the tab in that case?
emit part->browserExtension()->requestFocus(part);
if ( KMessageBox::questionYesNo( window->part()->widget(),
i18n("Close window?"), i18n("Confirmation Required"),
KStdGuiItem::close(), KStdGuiItem::cancel() )
== KMessageBox::Yes )
doClose = true;
}
}
else
doClose = true;
if (doClose)
{
// If this is the current window (the one the interpreter runs in),
// then schedule a delayed close (so that the script terminates first).
// But otherwise, close immediately. This fixes w=window.open("","name");w.close();window.open("name");
if ( Window::retrieveActive(exec) == window ) {
if (widget) {
// quit all dialogs of this view
// this fixes 'setTimeout('self.close()',1000); alert("Hi");' crash
widget->closeChildDialogs();
}
//kdDebug() << "scheduling delayed close" << endl;
// We'll close the window at the end of the script execution
Window* w = const_cast<Window*>(window);
w->m_delayed.append( Window::DelayedAction( Window::DelayedClose ) );
} else {
//kdDebug() << "closing NOW" << endl;
(const_cast<Window*>(window))->closeNow();
}
}
return Undefined();
}
case Window::Navigate:
window->goURL(exec, args[0].toString(exec).qstring(), false /*don't lock history*/);
return Undefined();
case Window::Focus: {
KHTMLSettings::KJSWindowFocusPolicy policy =
part->settings()->windowFocusPolicy(part->url().host());
if(policy == KHTMLSettings::KJSWindowFocusAllow && widget) {
widget->topLevelWidget()->raise();
KWin::deIconifyWindow( widget->topLevelWidget()->winId() );
widget->setActiveWindow();
emit part->browserExtension()->requestFocus(part);
}
return Undefined();
}
case Window::Blur:
// TODO
return Undefined();
case Window::BToA:
case Window::AToB: {
if (!s.is8Bit())
return Undefined();
TQByteArray in, out;
char *binData = s.ascii();
in.setRawData( binData, s.size() );
if (id == Window::AToB)
KCodecs::base64Decode( in, out );
else
KCodecs::base64Encode( in, out );
in.resetRawData( binData, s.size() );
UChar *d = new UChar[out.size()];
for (uint i = 0; i < out.size(); i++)
d[i].uc = (uchar) out[i];
UString ret(d, out.size(), false /*no copy*/);
return String(ret);
}
};
// now unsafe functions..
if (!window->isSafeScript(exec))
return Undefined();
switch (id) {
case Window::ScrollBy:
if(args.size() == 2 && widget)
widget->scrollBy(args[0].toInt32(exec), args[1].toInt32(exec));
return Undefined();
case Window::Scroll:
case Window::ScrollTo:
if(args.size() == 2 && widget)
widget->setContentsPos(args[0].toInt32(exec), args[1].toInt32(exec));
return Undefined();
case Window::MoveBy: {
KHTMLSettings::KJSWindowMovePolicy policy =
part->settings()->windowMovePolicy(part->url().host());
if(policy == KHTMLSettings::KJSWindowMoveAllow && args.size() == 2 && widget)
{
KParts::BrowserExtension *ext = part->browserExtension();
if (ext) {
TQWidget * tl = widget->topLevelWidget();
TQRect sg = TDEGlobalSettings::desktopGeometry(tl);
TQPoint dest = tl->pos() + TQPoint( args[0].toInt32(exec), args[1].toInt32(exec) );
// Security check (the spec talks about UniversalBrowserWrite to disable this check...)
if ( dest.x() >= sg.x() && dest.y() >= sg.x() &&
dest.x()+tl->width() <= sg.width()+sg.x() &&
dest.y()+tl->height() <= sg.height()+sg.y() )
emit ext->moveTopLevelWidget( dest.x(), dest.y() );
}
}
return Undefined();
}
case Window::MoveTo: {
KHTMLSettings::KJSWindowMovePolicy policy =
part->settings()->windowMovePolicy(part->url().host());
if(policy == KHTMLSettings::KJSWindowMoveAllow && args.size() == 2 && widget)
{
KParts::BrowserExtension *ext = part->browserExtension();
if (ext) {
TQWidget * tl = widget->topLevelWidget();
TQRect sg = TDEGlobalSettings::desktopGeometry(tl);
TQPoint dest( args[0].toInt32(exec)+sg.x(), args[1].toInt32(exec)+sg.y() );
// Security check (the spec talks about UniversalBrowserWrite to disable this check...)
if ( dest.x() >= sg.x() && dest.y() >= sg.y() &&
dest.x()+tl->width() <= sg.width()+sg.x() &&
dest.y()+tl->height() <= sg.height()+sg.y() )
emit ext->moveTopLevelWidget( dest.x(), dest.y() );
}
}
return Undefined();
}
case Window::ResizeBy: {
KHTMLSettings::KJSWindowResizePolicy policy =
part->settings()->windowResizePolicy(part->url().host());
if(policy == KHTMLSettings::KJSWindowResizeAllow
&& args.size() == 2 && widget)
{
TQWidget * tl = widget->topLevelWidget();
TQRect geom = tl->frameGeometry();
window->resizeTo( tl,
geom.width() + args[0].toInt32(exec),
geom.height() + args[1].toInt32(exec) );
}
return Undefined();
}
case Window::ResizeTo: {
KHTMLSettings::KJSWindowResizePolicy policy =
part->settings()->windowResizePolicy(part->url().host());
if(policy == KHTMLSettings::KJSWindowResizeAllow
&& args.size() == 2 && widget)
{
TQWidget * tl = widget->topLevelWidget();
window->resizeTo( tl, args[0].toInt32(exec), args[1].toInt32(exec) );
}
return Undefined();
}
case Window::SetTimeout:
case Window::SetInterval: {
bool singleShot;
int i; // timeout interval
if (args.size() == 0)
return Undefined();
if (args.size() > 1) {
singleShot = (id == Window::SetTimeout);
i = args[1].toInt32(exec);
} else {
// second parameter is missing. Emulate Mozilla behavior.
singleShot = true;
i = 4;
}
if (v.isA(StringType)) {
int r = (const_cast<Window*>(window))->winq->installTimeout(Identifier(s), i, singleShot );
return Number(r);
}
else if (v.isA(ObjectType) && Object::dynamicCast(v).implementsCall()) {
Object func = Object::dynamicCast(v);
List funcArgs;
ListIterator it = args.begin();
int argno = 0;
while (it != args.end()) {
Value arg = it++;
if (argno++ >= 2)
funcArgs.append(arg);
}
if (args.size() < 2)
funcArgs.append(Number(i));
int r = (const_cast<Window*>(window))->winq->installTimeout(func, funcArgs, i, singleShot );
return Number(r);
}
else
return Undefined();
}
case Window::ClearTimeout:
case Window::ClearInterval:
(const_cast<Window*>(window))->winq->clearTimeout(v.toInt32(exec));
return Undefined();
case Window::Print:
if ( widget ) {
// ### TODO emit onbeforeprint event
widget->print();
// ### TODO emit onafterprint event
}
case Window::CaptureEvents:
case Window::ReleaseEvents:
// Do nothing for now. These are NS-specific legacy calls.
break;
case Window::AddEventListener: {
JSEventListener *listener = Window::retrieveActive(exec)->getJSEventListener(args[1]);
if (listener) {
DOM::DocumentImpl* docimpl = static_cast<DOM::DocumentImpl *>(part->document().handle());
docimpl->addWindowEventListener(DOM::EventImpl::typeToId(args[0].toString(exec).string()),listener,args[2].toBoolean(exec));
}
return Undefined();
}
case Window::RemoveEventListener: {
JSEventListener *listener = Window::retrieveActive(exec)->getJSEventListener(args[1]);
if (listener) {
DOM::DocumentImpl* docimpl = static_cast<DOM::DocumentImpl *>(part->document().handle());
docimpl->removeWindowEventListener(DOM::EventImpl::typeToId(args[0].toString(exec).string()),listener,args[2].toBoolean(exec));
}
return Undefined();
}
}
return Undefined();
}
////////////////////// ScheduledAction ////////////////////////
// KDE 4: Make those parameters const ... &
ScheduledAction::ScheduledAction(Object _func, List _args, DateTimeMS _nextTime, int _interval, bool _singleShot,
int _timerId)
{
//kdDebug(6070) << "ScheduledAction::ScheduledAction(isFunction) " << this << endl;
func = static_cast<ObjectImp*>(_func.imp());
args = _args;
isFunction = true;
singleShot = _singleShot;
nextTime = _nextTime;
interval = _interval;
executing = false;
timerId = _timerId;
}
// KDE 4: Make it const TQString &
ScheduledAction::ScheduledAction(TQString _code, DateTimeMS _nextTime, int _interval, bool _singleShot, int _timerId)
{
//kdDebug(6070) << "ScheduledAction::ScheduledAction(!isFunction) " << this << endl;
//func = 0;
//args = 0;
func = 0;
code = _code;
isFunction = false;
singleShot = _singleShot;
nextTime = _nextTime;
interval = _interval;
executing = false;
timerId = _timerId;
}
bool ScheduledAction::execute(Window *window)
{
KHTMLPart *part = ::tqqt_cast<KHTMLPart *>(window->m_frame->m_part);
if (!part || !part->jScriptEnabled())
return false;
ScriptInterpreter *interpreter = static_cast<ScriptInterpreter *>(part->jScript()->interpreter());
interpreter->setProcessingTimerCallback(true);
//kdDebug(6070) << "ScheduledAction::execute " << this << endl;
if (isFunction) {
if (func->implementsCall()) {
// #### check this
Q_ASSERT( part );
if ( part )
{
KJS::Interpreter *interpreter = part->jScript()->interpreter();
ExecState *exec = interpreter->globalExec();
Q_ASSERT( window == interpreter->globalObject().imp() );
Object obj( window );
func->call(exec,obj,args); // note that call() creates its own execution state for the func call
if (exec->hadException())
exec->clearException();
// Update our document's rendering following the execution of the timeout callback.
part->document().updateRendering();
}
}
}
else {
part->executeScript(DOM::Node(), code);
}
interpreter->setProcessingTimerCallback(false);
return true;
}
void ScheduledAction::mark()
{
if (func && !func->marked())
func->mark();
args.mark();
}
ScheduledAction::~ScheduledAction()
{
//kdDebug(6070) << "ScheduledAction::~ScheduledAction " << this << endl;
}
////////////////////// WindowQObject ////////////////////////
WindowQObject::WindowQObject(Window *w)
: parent(w)
{
//kdDebug(6070) << "WindowQObject::WindowQObject " << this << endl;
if ( !parent->m_frame )
kdDebug(6070) << "WARNING: null part in " << k_funcinfo << endl;
else
connect( parent->m_frame, TQT_SIGNAL( destroyed() ),
this, TQT_SLOT( parentDestroyed() ) );
pausedTime = 0;
lastTimerId = 0;
currentlyDispatching = false;
}
WindowQObject::~WindowQObject()
{
//kdDebug(6070) << "WindowQObject::~WindowQObject " << this << endl;
parentDestroyed(); // reuse same code
}
void WindowQObject::parentDestroyed()
{
killTimers();
TQPtrListIterator<ScheduledAction> it(scheduledActions);
for (; it.current(); ++it)
delete it.current();
scheduledActions.clear();
}
int WindowQObject::installTimeout(const Identifier &handler, int t, bool singleShot)
{
int id = ++lastTimerId;
if (t < 10) t = 10;
DateTimeMS nextTime = DateTimeMS::now().addMSecs(-pausedTime + t);
ScheduledAction *action = new ScheduledAction(handler.qstring(),nextTime,t,singleShot,id);
scheduledActions.append(action);
setNextTimer();
return id;
}
int WindowQObject::installTimeout(const Value &func, List args, int t, bool singleShot)
{
Object objFunc = Object::dynamicCast( func );
if (!objFunc.isValid())
return 0;
int id = ++lastTimerId;
if (t < 10) t = 10;
DateTimeMS nextTime = DateTimeMS::now().addMSecs(-pausedTime + t);
ScheduledAction *action = new ScheduledAction(objFunc,args,nextTime,t,singleShot,id);
scheduledActions.append(action);
setNextTimer();
return id;
}
void WindowQObject::clearTimeout(int timerId)
{
TQPtrListIterator<ScheduledAction> it(scheduledActions);
for (; it.current(); ++it) {
ScheduledAction *action = it.current();
if (action->timerId == timerId) {
scheduledActions.removeRef(action);
if (!action->executing)
delete action;
return;
}
}
}
bool WindowQObject::hasTimers() const
{
return scheduledActions.count();
}
void WindowQObject::mark()
{
TQPtrListIterator<ScheduledAction> it(scheduledActions);
for (; it.current(); ++it)
it.current()->mark();
}
void WindowQObject::timerEvent(TQTimerEvent *)
{
killTimers();
if (scheduledActions.isEmpty())
return;
currentlyDispatching = true;
DateTimeMS currentActual = DateTimeMS::now();
DateTimeMS currentAdjusted = currentActual.addMSecs(-pausedTime);
// Work out which actions are to be executed. We take a separate copy of
// this list since the main one may be modified during action execution
TQPtrList<ScheduledAction> toExecute;
TQPtrListIterator<ScheduledAction> it(scheduledActions);
for (; it.current(); ++it)
if (currentAdjusted >= it.current()->nextTime)
toExecute.append(it.current());
// ### verify that the window can't be closed (and action deleted) during execution
it = TQPtrListIterator<ScheduledAction>(toExecute);
for (; it.current(); ++it) {
ScheduledAction *action = it.current();
if (!scheduledActions.containsRef(action)) // removed by clearTimeout()
continue;
action->executing = true; // prevent deletion in clearTimeout()
if (parent->part()) {
bool ok = action->execute(parent);
if ( !ok ) // e.g. JS disabled
scheduledActions.removeRef( action );
}
if (action->singleShot) {
scheduledActions.removeRef(action);
}
action->executing = false;
if (!scheduledActions.containsRef(action))
delete action;
else
action->nextTime = action->nextTime.addMSecs(action->interval);
}
pausedTime += currentActual.msecsTo(DateTimeMS::now());
currentlyDispatching = false;
// Work out when next event is to occur
setNextTimer();
}
DateTimeMS DateTimeMS::addMSecs(int s) const
{
DateTimeMS c = *this;
c.mTime = TQT_TQTIME_OBJECT(mTime.addMSecs(s));
if (s > 0)
{
if (c.mTime < mTime)
c.mDate = TQT_TQDATE_OBJECT(mDate.addDays(1));
}
else
{
if (c.mTime > mTime)
c.mDate = TQT_TQDATE_OBJECT(mDate.addDays(-1));
}
return c;
}
bool DateTimeMS::operator >(const DateTimeMS &other) const
{
if (mDate > other.mDate)
return true;
if (mDate < other.mDate)
return false;
return mTime > other.mTime;
}
bool DateTimeMS::operator >=(const DateTimeMS &other) const
{
if (mDate > other.mDate)
return true;
if (mDate < other.mDate)
return false;
return mTime >= other.mTime;
}
int DateTimeMS::msecsTo(const DateTimeMS &other) const
{
int d = mDate.daysTo(other.mDate);
int ms = mTime.msecsTo(other.mTime);
return d*24*60*60*1000 + ms;
}
DateTimeMS DateTimeMS::now()
{
DateTimeMS t;
TQTime before = TQTime::currentTime();
t.mDate = TQDate::currentDate();
t.mTime = TQTime::currentTime();
if (t.mTime < before)
t.mDate = TQDate::currentDate(); // prevent race condition in hacky way :)
return t;
}
void WindowQObject::setNextTimer()
{
if (currentlyDispatching)
return; // Will schedule at the end
if (scheduledActions.isEmpty())
return;
TQPtrListIterator<ScheduledAction> it(scheduledActions);
DateTimeMS nextTime = it.current()->nextTime;
for (++it; it.current(); ++it)
if (nextTime > it.current()->nextTime)
nextTime = it.current()->nextTime;
DateTimeMS nextTimeActual = nextTime.addMSecs(pausedTime);
int nextInterval = DateTimeMS::now().msecsTo(nextTimeActual);
if (nextInterval < 0)
nextInterval = 0;
startTimer(nextInterval);
}
void WindowQObject::timeoutClose()
{
parent->closeNow();
}
Value FrameArray::get(ExecState *exec, const Identifier &p) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "FrameArray::get " << p.qstring() << " part=" << (void*)part << endl;
#endif
if (part.isNull())
return Undefined();
TQPtrList<KParts::ReadOnlyPart> frames = part->frames();
unsigned int len = frames.count();
if (p == lengthPropertyName)
return Number(len);
else if (p== "location") // non-standard property, but works in NS and IE
{
Object obj = Object::dynamicCast( Window::retrieve( part ) );
if ( obj.isValid() )
return obj.get( exec, "location" );
return Undefined();
}
// check for the name or number
KParts::ReadOnlyPart *frame = part->findFramePart(p.qstring());
if (!frame) {
bool ok;
unsigned int i = p.toArrayIndex(&ok);
if (ok && i < len)
frame = frames.at(i);
}
// we are potentially fetching a reference to a another Window object here.
// i.e. we may be accessing objects from another interpreter instance.
// Therefore we have to be a bit careful with memory management.
if (frame) {
return Window::retrieve(frame);
}
// Fun IE quirk: name lookup in there is actually done by document.all
// hence, it can find non-frame things (and even let them hide frame ones!)
// We don't quite do that, but do this as a fallback.
DOM::DocumentImpl* doc = static_cast<DOM::DocumentImpl*>(part->document().handle());
if (doc) {
DOM::HTMLCollectionImpl docuAll(doc, DOM::HTMLCollectionImpl::DOC_ALL);
DOM::NodeImpl* node = docuAll.namedItem(p.string());
if (node) {
if (node->id() == ID_FRAME || node->id() == ID_IFRAME) {
//Return the Window object.
KHTMLPart* part = static_cast<DOM::HTMLFrameElementImpl*>(node)->contentPart();
if (part)
return Value(Window::retrieveWindow(part));
else
return Undefined();
} else {
//Just a regular node..
return getDOMNode(exec, node);
}
}
} else {
kdWarning(6070) << "Missing own document in FrameArray::get()" << endl;
}
return ObjectImp::get(exec, p);
}
Value FrameArray::call(ExecState *exec, Object &/*thisObj*/, const List &args)
{
//IE supports a subset of the get functionality as call...
//... basically, when the return is a window, it supports that, otherwise it
//errors out. We do a cheap-and-easy emulation of that, and just do the same
//thing as get does.
if (args.size() == 1)
return get(exec, Identifier(args[0].toString(exec)));
return Undefined();
}
////////////////////// Location Object ////////////////////////
const ClassInfo Location::info = { "Location", 0, &LocationTable, 0 };
/*
@begin LocationTable 11
hash Location::Hash DontDelete
host Location::Host DontDelete
hostname Location::Hostname DontDelete
href Location::Href DontDelete
pathname Location::Pathname DontDelete
port Location::Port DontDelete
protocol Location::Protocol DontDelete
search Location::Search DontDelete
[[==]] Location::EqualEqual DontDelete|ReadOnly
assign Location::Assign DontDelete|Function 1
toString Location::ToString DontDelete|Function 0
replace Location::Replace DontDelete|Function 1
reload Location::Reload DontDelete|Function 0
@end
*/
IMPLEMENT_PROTOFUNC_DOM(LocationFunc)
Location::Location(tdehtml::ChildFrame *f) : m_frame(f)
{
//kdDebug(6070) << "Location::Location " << this << " m_part=" << (void*)m_part << endl;
}
Location::~Location()
{
//kdDebug(6070) << "Location::~Location " << this << " m_part=" << (void*)m_part << endl;
}
KParts::ReadOnlyPart *Location::part() const {
return m_frame ? static_cast<KParts::ReadOnlyPart *>(m_frame->m_part) : 0L;
}
Value Location::get(ExecState *exec, const Identifier &p) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "Location::get " << p.qstring() << " m_part=" << (void*)m_frame->m_part << endl;
#endif
if (m_frame.isNull() || m_frame->m_part.isNull())
return Undefined();
const HashEntry *entry = Lookup::findEntry(&LocationTable, p);
// properties that work on all Location objects
if ( entry && entry->value == Replace )
return lookupOrCreateFunction<LocationFunc>(exec,p,this,entry->value,entry->params,entry->attr);
// XSS check
const Window* window = Window::retrieveWindow( m_frame->m_part );
if ( !window || !window->isSafeScript(exec) )
return Undefined();
KURL url = m_frame->m_part->url();
if (entry)
switch (entry->value) {
case Hash:
return String( url.ref().isNull() ? TQString("") : "#" + url.ref() );
case Host: {
UString str = url.host();
if (url.port())
str += ":" + TQString::number((int)url.port());
return String(str);
// Note: this is the IE spec. The NS spec swaps the two, it says
// "The hostname property is the concatenation of the host and port properties, separated by a colon."
// Bleh.
}
case Hostname:
return String( url.host() );
case Href:
if (url.isEmpty())
return String("about:blank");
else if (!url.hasPath())
return String( url.prettyURL()+"/" );
else
return String( url.prettyURL() );
case Pathname:
if (url.isEmpty())
return String("");
return String( url.path().isEmpty() ? TQString("/") : url.path() );
case Port:
return String( url.port() ? TQString::number((int)url.port()) : TQString::fromLatin1("") );
case Protocol:
return String( url.protocol()+":" );
case Search:
return String( url.query() );
case EqualEqual: // [[==]]
return String(toString(exec));
case ToString:
return lookupOrCreateFunction<LocationFunc>(exec,p,this,entry->value,entry->params,entry->attr);
}
// Look for overrides
ValueImp * val = ObjectImp::getDirect(p);
if (val)
return Value(val);
if (entry && (entry->attr & Function))
return lookupOrCreateFunction<LocationFunc>(exec,p,this,entry->value,entry->params,entry->attr);
return Undefined();
}
void Location::put(ExecState *exec, const Identifier &p, const Value &v, int attr)
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "Location::put " << p.qstring() << " m_part=" << (void*)m_frame->m_part << endl;
#endif
if (m_frame.isNull() || m_frame->m_part.isNull())
return;
const Window* window = Window::retrieveWindow( m_frame->m_part );
if ( !window )
return;
KURL url = m_frame->m_part->url();
const HashEntry *entry = Lookup::findEntry(&LocationTable, p);
if (entry) {
// XSS check. Only new hrefs can be set from other sites
if (entry->value != Href && !window->isSafeScript(exec))
return;
TQString str = v.toString(exec).qstring();
switch (entry->value) {
case Href: {
KHTMLPart* p =::tqqt_cast<KHTMLPart*>(Window::retrieveActive(exec)->part());
if ( p )
url = p->htmlDocument().completeURL( str ).string();
else
url = str;
break;
}
case Hash:
// when the hash is already the same ignore it
if (str == url.ref()) return;
url.setRef(str);
break;
case Host: {
TQString host = str.left(str.find(":"));
TQString port = str.mid(str.find(":")+1);
url.setHost(host);
url.setPort(port.toUInt());
break;
}
case Hostname:
url.setHost(str);
break;
case Pathname:
url.setPath(str);
break;
case Port:
url.setPort(str.toUInt());
break;
case Protocol:
url.setProtocol(str);
break;
case Search:
url.setQuery(str);
break;
}
} else {
ObjectImp::put(exec, p, v, attr);
return;
}
Window::retrieveWindow(m_frame->m_part)->goURL(exec, url.url(), false /* don't lock history*/ );
}
Value Location::toPrimitive(ExecState *exec, Type) const
{
if (m_frame) {
Window* window = Window::retrieveWindow( m_frame->m_part );
if ( window && window->isSafeScript(exec) )
return String(toString(exec));
}
return Undefined();
}
UString Location::toString(ExecState *exec) const
{
if (m_frame) {
Window* window = Window::retrieveWindow( m_frame->m_part );
if ( window && window->isSafeScript(exec) )
{
KURL url = m_frame->m_part->url();
if (url.isEmpty())
return "about:blank";
else if (!url.hasPath())
return url.prettyURL()+"/";
else
return url.prettyURL();
}
}
return "";
}
Value LocationFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( Location, thisObj );
Location *location = static_cast<Location *>(thisObj.imp());
KParts::ReadOnlyPart *part = location->part();
if (!part) return Undefined();
Window* window = Window::retrieveWindow(part);
if ( !window->isSafeScript(exec) && id != Location::Replace)
return Undefined();
switch (id) {
case Location::Assign:
case Location::Replace:
Window::retrieveWindow(part)->goURL(exec, args[0].toString(exec).qstring(),
id == Location::Replace);
break;
case Location::Reload: {
KHTMLPart *tdehtmlpart = ::tqqt_cast<KHTMLPart *>(part);
if (tdehtmlpart)
tdehtmlpart->scheduleRedirection(-1, part->url().url(), true/*lock history*/);
else
part->openURL(part->url());
break;
}
case Location::ToString:
return String(location->toString(exec));
}
return Undefined();
}
////////////////////// External Object ////////////////////////
const ClassInfo External::info = { "External", 0, 0, 0 };
/*
@begin ExternalTable 4
addFavorite External::AddFavorite DontDelete|Function 1
@end
*/
IMPLEMENT_PROTOFUNC_DOM(ExternalFunc)
Value External::get(ExecState *exec, const Identifier &p) const
{
return lookupGetFunction<ExternalFunc,ObjectImp>(exec,p,&ExternalTable,this);
}
Value ExternalFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( External, thisObj );
External *external = static_cast<External *>(thisObj.imp());
KHTMLPart *part = external->part;
if (!part)
return Undefined();
KHTMLView *widget = part->view();
switch (id) {
case External::AddFavorite:
{
#ifndef KONQ_EMBEDDED
if (!widget->dialogsAllowed())
return Undefined();
part->xmlDocImpl()->updateRendering();
if (args.size() != 1 && args.size() != 2)
return Undefined();
TQString url = args[0].toString(exec).qstring();
TQString title;
if (args.size() == 2)
title = args[1].toString(exec).qstring();
// AK - don't do anything yet, for the moment i
// just wanted the base js handling code in cvs
return Undefined();
TQString question;
if ( title.isEmpty() )
question = i18n("Do you want a bookmark pointing to the location \"%1\" to be added to your collection?")
.arg(url);
else
question = i18n("Do you want a bookmark pointing to the location \"%1\" titled \"%2\" to be added to your collection?")
.arg(url).arg(title);
emit part->browserExtension()->requestFocus(part);
TQString caption;
if (!part->url().host().isEmpty())
caption = part->url().host() + " - ";
caption += i18n("JavaScript Attempted Bookmark Insert");
if (KMessageBox::warningYesNo(
widget, question, caption,
i18n("Insert"), i18n("Disallow")) == KMessageBox::Yes)
{
KBookmarkManager *mgr = KBookmarkManager::userBookmarksManager();
mgr->addBookmarkDialog(url,title);
}
#else
return Undefined();
#endif
break;
}
default:
return Undefined();
}
return Undefined();
}
////////////////////// History Object ////////////////////////
const ClassInfo History::info = { "History", 0, 0, 0 };
/*
@begin HistoryTable 4
length History::Length DontDelete|ReadOnly
back History::Back DontDelete|Function 0
forward History::Forward DontDelete|Function 0
go History::Go DontDelete|Function 1
@end
*/
IMPLEMENT_PROTOFUNC_DOM(HistoryFunc)
Value History::get(ExecState *exec, const Identifier &p) const
{
return lookupGet<HistoryFunc,History,ObjectImp>(exec,p,&HistoryTable,this);
}
Value History::getValueProperty(ExecState *, int token) const
{
// if previous or next is implemented, make sure its not a major
// privacy leak (see i.e. http://security.greymagic.com/adv/gm005-op/)
switch (token) {
case Length:
{
if ( !part )
return Number( 0 );
KParts::BrowserExtension *ext = part->browserExtension();
if ( !ext )
return Number( 0 );
KParts::BrowserInterface *iface = ext->browserInterface();
if ( !iface )
return Number( 0 );
TQVariant length = iface->property( "historyLength" );
if ( length.type() != TQVariant::UInt )
return Number( 0 );
return Number( length.toUInt() );
}
default:
kdDebug(6070) << "WARNING: Unhandled token in History::getValueProperty : " << token << endl;
return Undefined();
}
}
Value HistoryFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( History, thisObj );
History *history = static_cast<History *>(thisObj.imp());
Value v = args[0];
Number n;
if(v.isValid())
n = v.toInteger(exec);
int steps;
switch (id) {
case History::Back:
steps = -1;
break;
case History::Forward:
steps = 1;
break;
case History::Go:
steps = n.intValue();
break;
default:
return Undefined();
}
// Special case for go(0) from a frame -> reload only the frame
// go(i!=0) from a frame navigates into the history of the frame only,
// in both IE and NS (but not in Mozilla).... we can't easily do that
// in Konqueror...
if (!steps) // add && history->part->parentPart() to get only frames, but doesn't matter
{
history->part->openURL( history->part->url() ); /// ## need args.reload=true?
} else
{
// Delay it.
// Testcase: history.back(); alert("hello");
Window* window = Window::retrieveWindow( history->part );
window->delayedGoHistory( steps );
}
return Undefined();
}
/////////////////////////////////////////////////////////////////////////////
#ifdef Q_WS_QWS
const ClassInfo Konqueror::info = { "Konqueror", 0, 0, 0 };
bool Konqueror::hasProperty(ExecState *exec, const Identifier &p) const
{
if ( p.qstring().startsWith( "goHistory" ) ) return false;
return true;
}
Value Konqueror::get(ExecState *exec, const Identifier &p) const
{
if ( p == "goHistory" || part->url().protocol() != "http" || part->url().host() != "localhost" )
return Undefined();
KParts::BrowserExtension *ext = part->browserExtension();
if ( ext ) {
KParts::BrowserInterface *iface = ext->browserInterface();
if ( iface ) {
TQVariant prop = iface->property( p.qstring().latin1() );
if ( prop.isValid() ) {
switch( prop.type() ) {
case TQVariant::Int:
return Number( prop.toInt() );
case TQVariant::String:
return String( prop.toString() );
default:
break;
}
}
}
}
return Value( new KonquerorFunc(exec, this, p.qstring().latin1() ) );
}
Value KonquerorFunc::tryCall(ExecState *exec, Object &, const List &args)
{
KParts::BrowserExtension *ext = konqueror->part->browserExtension();
if (!ext)
return Undefined();
KParts::BrowserInterface *iface = ext->browserInterface();
if ( !iface )
return Undefined();
TQCString n = m_name.data();
n += "()";
iface->callMethod( n.data(), TQVariant() );
return Undefined();
}
UString Konqueror::toString(ExecState *) const
{
return UString("[object Konqueror]");
}
#endif
/////////////////////////////////////////////////////////////////////////////
} //namespace KJS
#include "kjs_window.moc"
|