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
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/***************************************************/
/* File : Handlers.c */
/* Purpose: Event handlers for driving the browser */
/* front-end. */
/* Author : A.D.Hodgkinson */
/* History: 07-Feb-97: Created from Main.h source */
/***************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "swis.h"
#include "kernel.h"
#include "flex.h"
#include "HTMLLib.h" /* HTML library API, Which will include html2_ext.h, tags.h and struct.h */
#include "URI.h" /* URI handler API, in URILib:h */
#include "wimp.h"
#include "wimplib.h"
#include "event.h"
#include "toolbox.h"
#include "quit.h"
#include "proginfo.h"
#include "Dialler.h"
#include "svcprint.h"
#include "Global.h"
#include "FromROSLib.h"
#include "TBEvents.h"
#include "Utils.h"
#include "Authorise.h"
#include "Browser.h"
#include "Fetch.h"
#include "FetchPage.h"
#include "FontManage.h"
#include "Forms.h"
#include "Frames.h"
#include "History.h"
#include "Images.h"
#include "JavaScript.h"
#include "MiscDefs.h"
#include "Mouse.h"
#include "Printing.h"
#include "Redraw.h"
#include "Reformat.h"
#include "Save.h"
#include "TokenUtils.h"
#include "Toolbars.h"
#include "URLutils.h"
#include "Windows.h"
#include "Handlers.h"
/* Local statics */
static char last_help[MaxStaLen];
/* Static function prototypes */
static void handlers_get_call_info (browser_data ** bp, ObjectId * op, IdBlock * idb, ComponentId button);
static int handlers_menu_or_toolbar (IdBlock * idb);
static _kernel_oserror * handle_history_menu_popup (browser_data * b, ObjectId toolbar, ComponentId left_or_right, int show_urls);
static void handle_go_to_with_key (browser_data * b, char c, int clear);
/*************************************************/
/* handlers_menu_or_toolbar() */
/* */
/* Returns 1 if an event came from a menu, else */
/* 0 if it was a toolbar (only call this where */
/* these are the only two possibilities!). */
/* */
/* Parameters: Pointer to the event ID block. */
/* */
/* Returns: 1 if the event came from a menu, */
/* else 0. */
/*************************************************/
static int handlers_menu_or_toolbar(IdBlock * idb)
{
_kernel_oserror * e;
ObjectId tt, tb, sw;
/* If we can't get toolbars on the ancestor, there are no */
/* toolbars so the event certainly isn't from a toolbar. */
/* So if the call gives an error, return 1. */
e = window_get_tool_bars(InternalTopLeft | InternalBottomLeft,
idb->ancestor_id,
&tb,
&tt,
NULL,
NULL);
if (e) return 1;
if (fixed.swapbars) sw = tt, tt = tb, tb = sw;
/* If the object ID of the event generator matches either toolbar */
/* object ID, the event came from that toolbar; else, from a menu. */
if (idb->self_id == tt || idb->self_id == tb) return 0;
else return 1;
}
/*************************************************/
/* handlers_get_call_info() */
/* */
/* For button handlers, a standard set of calls */
/* is used for each handler - find out the */
/* browser_data struct and toolbar, debounce any */
/* keypress and if this had to be done slab the */
/* button manually. */
/* */
/* Parameters: Pointer to a pointer to a */
/* browser_data struct which will be */
/* filled with a browser_data * for */
/* the event's underlying browser */
/* window; */
/* Pointer to an ObjectId into which */
/* the object ID of the toolbar from */
/* which the event came is placed; */
/* Pointer to the event's ID block; */
/* ComponentId of the button. */
/* */
/* Assumes: Any pointer may be NULL, but the */
/* caller should check that returned */
/* values are sensible. */
/*************************************************/
static void handlers_get_call_info(browser_data ** bp, ObjectId * op, IdBlock * idb, ComponentId button)
{
browser_data * b;
ObjectId t;
int key;
/* If the object has an ancestor, the event was from a toolbar, */
/* else it was from the window itself (e.g. due to a keyboard */
/* shortcut being activated). */
_swix(OS_Byte, _INR(0,1) | _OUT(1), 121, 0, &key);
if (toolbox_get_client_handle(0, idb->ancestor_id, (void *) &b))
{
ChkError(toolbox_get_client_handle(0, idb->self_id, (void *) &b));
t = toolbars_get_upper(b);
if (key != 255)
{
slab_gadget_in(t, button);
debounce_keypress();
slab_gadget_out(t, button);
}
}
else
{
t = toolbars_get_upper(b);
if (key != 255)
{
slab_gadget_in(t, button);
debounce_keypress();
slab_gadget_out(t, button);
}
}
if (op) *op = t;
if (bp) *bp = b;
}
/*************************************************/
/* handle_messages() */
/* */
/* Deal with Wimp messages for reason codes 17 */
/* and 18 (type 19, acknowledges, are handled in */
/* handle_ack(), below). Parameters are as */
/* standard for a Wimp message handler. */
/*************************************************/
int handle_messages(WimpMessage * m, void * handle)
{
switch (m->hdr.action_code)
{
case Wimp_MQuit:quit=1;
break;
case Wimp_MMenusDeleted:menusrc = Menu_None;
break;
case Wimp_MHelpReply:
{
if (fixed.claimhelp)
{
ObjectId o, a = 0;
browser_data * b = NULL;
WimpGetPointerInfoBlock i;
wimp_get_pointer_info(&i);
if (window_wimp_to_toolbox(0, i.window_handle, i.icon_handle, &o, NULL)) break;
/* If we can get an ancestor, the pointer is over e.g. a toolbar */
/* - otherwise, assume it is over a browser window. */
toolbox_get_ancestor(0, o, &a, NULL);
if (a)
{
toolbox_get_client_handle(0, a, (void *) &b);
}
else toolbox_get_client_handle(0, o, (void *) &b);
/* If we haven't got a valid client handle, exit. */
if (!is_known_browser(b)) break;
/* If the text is empty, there was no help for that item, */
/* so restore the old status display, if there was a */
/* help display already there. */
if (!*m->data.help_reply.text)
{
if (b->status_help != NULL)
{
b->status_help = NULL;
toolbars_cancel_status(b, Toolbars_Status_Help);
}
}
else
{
/* Otherwise update the status bar with the help text, */
/* if the text has changed. */
if (
!b->status_help ||
(
b->status_help &&
strcmp(b->status_help, m->data.help_reply.text)
)
)
{
StrNCpy0(last_help, m->data.help_reply.text);
b->status_help = last_help;
toolbars_update_status(b, Toolbars_Status_Help);
}
}
}
}
break;
case Wimp_MModeChange:
{
browser_data * b;
modechanged = 1;
ChkError(image_mode_change());
if (!printing) wimpt_read();
read_os_to_points(); /* Handles the 'printing' flag internally */
b = last_browser;
while (b)
{
ChkError(fm_rescale_fonts(b));
b = b->previous;
}
ChkError(windows_initialise_tool_sizes());
}
break;
case Wimp_MAppControl:
{
/* AppControl message - stop all activity */
if (
m->data.app_control.reason == Wimp_MAppControl_Stop &&
m->hdr.sender != task_handle
)
{
browser_data * b;
IdBlock idb;
b = last_browser;
while (b)
{
idb.ancestor_id = 0;
idb.self_id = b->self_id;
handle_stop(0, NULL, &idb, NULL);
b = b->previous;
}
}
}
break;
case Browser_Message_PrintError:
{
if (m->hdr.size == 20)
{
/* RISC OS 2 printer manager's PrintBusy response */
erb.errnum = Utils_Error_Custom_Message;
StrNCpy0(erb.errmess,
lookup_token("PrintBusy:The printer is currently busy.",
0,
0));
show_error_ret(&erb);
}
/* RISC OS 3 !Printers general error response */
else show_error_ret((_kernel_oserror *) &m->data);
}
break;
case Browser_Message_PrintTypeOdd:
{
WimpMessage ptk;
if (m->hdr.your_ref && m->hdr.your_ref == printer_message_ref)
{
/* The printer manager sent PrintTypeOdd as a reply to this */
/* task (not a broadcast), so go ahead and print. */
printer_message_ref = 0;
/* Send PrintTypeKnown */
ptk.hdr.size = 20;
ptk.hdr.your_ref = m->hdr.my_ref;
ptk.hdr.action_code = Browser_Message_PrintTypeKnown;
ChkError(wimp_send_message(Wimp_EUserMessage, &ptk, m->hdr.sender, 0, NULL));
print_print(NULL);
}
// Commented out as the Alias$@PrintType_FF4 system variable does this job
// anyway, and if we don't claim this message then anything else which may
// have a better idea of what to do at least gets a chance to try.
//
// This currently doesn't work, incidentally; the conditions on the 'if'
// are wrong (printer_message_ref has probably been set to 0, but I never
// got the chance to properly debug this before removing it due to time
// constraints...).
//
// else if (printer_message_ref && m->data.data_save.file_type == FileType_POUT)
// {
// /* If the printer doesn't understand PrintOut files, then */
// /* it may be broken (!) / PostScript. So reply, and copy */
// /* the file to the printer device directly. */
//
// printer_message_ref = 0;
//
// ptk.hdr.size = 20;
// ptk.hdr.your_ref = m->hdr.my_ref;
// ptk.hdr.action_code = Browser_Message_PrintTypeKnown;
//
// ChkError(wimp_send_message(Wimp_EUserMessage, &ptk, m->hdr.sender, 0, NULL));
//
// _swix(OS_FSControl,
// _INR(0,3),
//
// 26,
// m->data.data_save.leaf_name,
// "printer:",
// 2); /* Flags - 'Force' set, but no others. */
// }
}
break;
case Wimp_MDataSaveAck:
{
if (m->hdr.your_ref == printer_message_ref)
{
WimpMessage dl;
int file_size;
/* Print to a file in Printer$Temp, then send a */
/* DataLoad to the printer manager. */
printer_message_ref = 0;
print_print(m->data.data_save.leaf_name);
_swix(OS_File,
_INR(0,1) | _OUT(4),
23,
m->data.data_save.leaf_name,
&file_size);
dl.hdr.size = 64;
dl.hdr.your_ref = m->hdr.my_ref;
dl.hdr.action_code = Wimp_MDataLoad;
dl.data.data_load.destination_window = m->data.data_save.destination_window;
dl.data.data_load.destination_icon = m->data.data_save.destination_icon;
dl.data.data_load.estimated_size = file_size;
dl.data.data_load.file_type = FileType_POUT;
_swix(OS_File,
_INR(0,2),
18,
m->data.data_save.leaf_name,
FileType_POUT);
strcpy(dl.data.data_load.leaf_name, m->data.data_save.leaf_name);
ChkError(wimp_send_message(Wimp_EUserMessage, &dl, m->hdr.sender, 0, NULL));
}
}
break;
case Wimp_MDataOpen:
{
/* Don't want to load a text file from double-clicking, */
/* only by dragging to a window or the icon bar icon. */
if (m->data.data_open.file_type == FileType_TEXT) break;
/* Now treat as a DataLoad message ready to drop */
/* through to the Wimp_MDataLoad case statement. */
/* This avoids duplicating the loader code. */
m->data.data_load.destination_window = 0; /* Force a new window to open */
m->data.data_load.destination_icon = -1;
m->data.data_load.estimated_size = 0;
}
/* So let the above fall through to Wimp_MDataLoad... */
case Wimp_MDataLoad:
{
/* Proceed only if it's a filetype we can handle */
if (
m->data.data_load.file_type == FileType_HTML ||
m->data.data_load.file_type == FileType_TEXT ||
m->data.data_load.file_type == FileType_URI
)
{
if (m->hdr.action_code == Wimp_MDataOpen)
{
/* If we've fallen into the DataLoad code from the DataOpen */
/* code above, need to send a DataLoadAck message now. */
WimpMessage dla = *m;
dla.hdr.sender = task_handle;
dla.hdr.your_ref = m->hdr.my_ref;
dla.hdr.action_code = Wimp_MDataLoadAck;
ChkError(wimp_send_message(Wimp_EUserMessage, &dla, m->hdr.sender, 0, NULL));
}
if (m->data.data_load.destination_window <= 0)
{
/* Load file to icon bar - i.e. open a new window. */
char url[2048];
if (m->data.data_load.file_type != FileType_URI)
{
StrNCpy0(url, m->data.data_load.leaf_name);
urlutils_pathname_to_url(url, sizeof(url));
}
else urlutils_load_uri_file(url, sizeof(url), m->data.data_load.leaf_name);
ChkError(windows_create_browser(url, NULL, NULL, NULL));
}
else
{
/* Load file to a browser window. Need to find it's */
/* browser_data structure. */
char url[2048];
ObjectId o;
browser_data * b;
ChkError(window_wimp_to_toolbox(0,
m->data.data_load.destination_window,
m->data.data_load.destination_icon,
&o,
NULL));
ChkError(toolbox_get_client_handle(0, o, (void *) &b));
/* Is the client handle a known browser_data structure? */
if (is_known_browser(b))
{
/* It is, so deal with the file */
if (m->data.data_load.file_type != FileType_URI)
{
StrNCpy0(url, m->data.data_load.leaf_name);
urlutils_pathname_to_url(url, sizeof(url));
}
else urlutils_load_uri_file(url, sizeof(url), m->data.data_load.leaf_name);
ChkError(fetchpage_new(b, url, 1, 0));
}
}
}
}
break;
case URI_MProcess:
{
URIProcessMessage * uri = (URIProcessMessage *) &m->data;
int ok;
unsigned int sender = m->hdr.sender;
/* Can we handle this URI? */
ok = urlutils_check_protocols(uri->uri);
#ifdef TRACE
if (tl & (1u<<21)) Printf("handle_messages: URI_MProcess '%s', ok = %d\n",uri->uri,ok);
#endif
/* If so, reply to the message and possibly start a fetch */
if (ok)
{
/* Only fetch if the flags bits don't say we're to just */
/* check the URI could be handled. */
if (!uri->flags.bits.check)
{
uri_queue * entry = urlutils_find_queue_entry(uri->uri_handle);
if (entry)
{
ChkError(fetchpage_postprocess_uri(entry->b,
uri ->uri,
entry->flags & URIQueue_RecordInHistory ? 1 : 0));
/* Don't remove it from the queue of uri_queue structures yet - */
/* wait for the ReturnResult message for that. */
}
else ChkError(windows_create_browser(uri->uri, NULL, NULL, NULL));
}
/* Now reply, saying that we've handled the message */
m->hdr.sender = task_handle;
m->hdr.your_ref = m->hdr.my_ref;
m->hdr.action_code = URI_MProcessAck;
ChkError(wimp_send_message(Wimp_EUserMessage, m, sender, 0, NULL));
}
}
break;
case URI_MReturnResult:
{
URIReturnResultMessage * uri = (URIReturnResultMessage *) &m->data;
#ifdef TRACE
if (tl & (1u<<21)) Printf("handle_messages: URI_MReturnResult, not_claimed = %d\n",uri->flags.bits.not_claimed);
#endif
/* Remove the entry from the queue */
ChkError(urlutils_remove_from_queue(uri->uri_handle));
/* If the URI was not claimed by anyone, give an appropriate error */
if (uri->flags.bits.not_claimed)
{
erb.errnum = Utils_Error_Custom_Message;
StrNCpy0(erb.errmess,
lookup_token("CannotFetch:The browser does not have a method of fetching the requested site.",
0,0));
show_error_ret(&erb);
}
}
break;
case URI_MDying:
{
/* If the URI handler is dying, don't try and use it anymore... */
uri_module_present = 0;
}
break;
default: return 0;
}
return 1;
}
/*************************************************/
/* handle_ack() */
/* */
/* Handles UserMessage_Acknowledge from the */
/* Wimp (message bouncing, etc.). */
/* */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_ack(int eventcode, WimpPollBlock * block, IdBlock * idb, void * handle)
{
switch (block->user_message_acknowledge.hdr.action_code)
{
case Browser_Message_PrintSave:
{
/* The PrintSave bounced, so the printer driver must not be loaded. */
/* Since we're not printing text, the PRMs say 'go for it'... */
print_print(NULL);
}
break;
case Wimp_MHelpRequest:
{
/* If a HelpRequest bounces, there's no help on the item the pointer */
/* is over so allow the status display to go back to status again. */
if (fixed.claimhelp)
{
ObjectId o, a = -1;
browser_data * b = NULL;
WimpGetPointerInfoBlock i;
wimp_get_pointer_info(&i);
if (window_wimp_to_toolbox(0, i.window_handle, i.icon_handle, &o, NULL)) break;
/* If we can get an ancestor, the pointer is over e.g. a toolbar */
/* - otherwise, assume it is over a browser window. */
toolbox_get_ancestor(0, o, &a, NULL);
if (a)
{
toolbox_get_client_handle(0, a, (void *) &b);
}
else toolbox_get_client_handle(0, o, (void *) &b);
/* If we haven't got a valid client handle, exit */
if (!is_known_browser(b)) break;
/* Update the status line */
if (b->status_help != NULL)
{
b->status_help = NULL;
toolbars_cancel_status(b, Toolbars_Status_Help);
}
}
}
default: return 0;
}
return 1;
}
/*************************************************/
/* handle_send_helpreq() */
/* */
/* Sends out HelpRequest messages for the item */
/* the mouse pointer is currently over, every */
/* 20 centiseconds or so. */
/* */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_send_helpreq(int eventcode, WimpPollBlock * block, IdBlock * idb, void * handle)
{
int time_now;
static int last_time = 0;
static int last_window = 0;
static int last_icon = 0;
/* Only proceed if the fixed choices say to do so */
if (fixed.claimhelp)
{
/* Don't sent out requests too often */
_swix(OS_ReadMonotonicTime, _OUT(0), &time_now);
if (time_now - last_time > 20)
{
WimpGetPointerInfoBlock i;
WimpMessage m;
last_time = time_now;
wimp_get_pointer_info(&i);
/* Don't send a request if the pointer isn't over a */
/* browser-owned window. */
if (task_handle == task_from_window(i.window_handle))
{
/* Don't send out multiple requests for the same window/icon. */
if (i.icon_handle != last_icon || i.window_handle != last_window)
{
last_icon = i.icon_handle;
last_window = i.window_handle;
}
else return 0;
/* Build the message block and send the request */
m.hdr.size = 40;
m.hdr.sender = task_handle;
m.hdr.my_ref = 0;
m.hdr.your_ref = 0;
m.hdr.action_code = Wimp_MHelpRequest;
m.data.help_request.mouse_x = i.x;
m.data.help_request.mouse_y = i.y;
m.data.help_request.buttons = i.button_state;
m.data.help_request.window_handle = i.window_handle;
m.data.help_request.icon_handle = i.icon_handle;
ChkError(wimp_send_message(Wimp_EUserMessageRecorded, &m, i.window_handle, i.icon_handle, NULL));
}
}
}
return 0;
}
/*************************************************/
/* handle_keys() */
/* */
/* Deal with keyboard pressed events from the */
/* Wimp. Parameters are as standard for a Wimp */
/* event handler. */
/*************************************************/
int handle_keys(int eventcode, WimpPollBlock * block, IdBlock * idb, void * handle)
{
browser_data * b = NULL;
browser_data * ancestor = NULL;
browser_data * curframe = NULL;
_kernel_oserror * e;
int key;
/* Get the browser_data structure associated with either this object's */
/* ancestor, if it has one, or this object directly, if not. If either */
/* call fails this isn't a keypress from an ancestor object obtained */
/* from a browser window and it isn't from a browser window directly. */
if (idb->ancestor_id) e = toolbox_get_client_handle(0, idb->ancestor_id, (void *) &b);
else e = toolbox_get_client_handle(0, idb->self_id, (void *) &b);
/* Some key presses may come from windows that have non-zero */
/* client handles which aren't browser_data struct pointers, */
/* e.g. a print dialogue with an animation in it will */
/* return an animation frame. So if b is non-zero but not a */
/* known browser_data struct pointer, set it to NULL so that */
/* later routines can quickly know there is no valid pointer */
/* available. */
if (b && !is_known_browser(b)) b = NULL;
if (b)
{
ancestor = utils_ancestor(b);
curframe = ancestor->selected_frame;
if (!curframe) curframe = b;
}
key = ((WimpKeyPressedEvent *) block)->key_code;
/* Is this from a URL bar? To find out, get the toolbar ID of */
/* this object, if possible. */
if (!e && idb->ancestor_id)
{
ObjectId i;
i = toolbars_get_upper(b);
if (!e && i == idb->self_id)
{
/* Make sure we have a client handle for the underlying browser */
/* window before attempting to proceed */
if (b)
{
switch (key)
{
/* Scrolling the page. Remember, keypresses trapped here */
/* are from a toolbar object (probably the URL writable) */
/* so certain key presses - such as Copy / End to go to */
/* the bottom of the page - should *not* be trapped, as */
/* they have other meanings (e.g. in the above example, */
/* delete character to the right). */
case akbd_UpK:
case akbd_DownK:
case akbd_PageUpK:
case akbd_PageDownK:
case akbd_HomeK:
case akbd_UpK + akbd_Ctl:
case akbd_UpK + akbd_Ctl + akbd_Sh:
case akbd_DownK + akbd_Ctl:
case akbd_DownK + akbd_Ctl + akbd_Sh:
{
if (!browser_scroll_page_by_key(curframe, key, NULL))
{
key = 0;
_swix(OS_Byte, _INR(0,1), 21, 0); /* Flush keyboard buffer */
}
}
break;
case akbd_LeftK:
case akbd_LeftK + akbd_Sh:
case akbd_LeftK + akbd_Ctl:
case akbd_LeftK + akbd_Sh + akbd_Ctl:
{
/* For left, only scroll when the caret is at the start of the */
/* string in the URL writable. */
if (((WimpKeyPressedEvent *) block)->caret.index == 0)
{
if (!browser_scroll_page_by_key(curframe, key, NULL))
{
key = 0;
_swix(OS_Byte, _INR(0,1), 21, 0); /* Flush keyboard buffer */
}
}
}
break;
case akbd_RightK:
case akbd_RightK + akbd_Sh:
case akbd_RightK + akbd_Ctl:
case akbd_RightK + akbd_Sh + akbd_Ctl:
{
/* For right, only scroll when the caret is at the end of the */
/* string in the URL writable. */
char writable[MaxUrlLen];
int len;
writable[0] = 0;
writablefield_get_value(0, idb->self_id, DisplayURL, writable, sizeof(writable), &len);
if (((WimpKeyPressedEvent *) block)->caret.index >= len)
{
if (!browser_scroll_page_by_key(curframe, key, NULL))
{
key = 0;
_swix(OS_Byte, _INR(0,1), 21, 0); /* Flush keyboard buffer */
}
}
}
break;
case akbd_TabK:
{
if (choices.keyboardctl)
{
wimp_set_caret_position(ancestor->window_handle, -1, 0, 0, -1, -1);
/* If there's no selected token, select one */
if (!ancestor->selected || !ancestor->selected_owner)
{
/* Ensure *both* values are NULL (sanity check) */
ancestor->selected = NULL;
ancestor->selected_owner = NULL;
/* Select a token */
browser_move_selection(curframe, akbd_DownK);
}
else
{
/* If there's a selected token, does it belong to this */
/* window? */
if (ancestor->selected_owner == curframe)
{
WimpGetWindowStateBlock s;
/* If it belongs to this window but it's not visible, */
/* find a new token that is. */
s.window_handle = curframe->window_handle;
if (!wimp_get_window_state(&s) && !browser_check_visible(b, &s, ancestor->selected))
{
browser_clear_selection(curframe, 0);
browser_move_selection(curframe, akbd_DownK);
}
}
// else
// {
// /* The selected token doesn't belong to this window, */
// /* so select a new one here. */
//
// browser_move_selection(b, akbd_DownK);
// }
}
}
// This is unfinished - it only works if the form has already
// had an input focus at least once, and won't scroll the page
// if the focus should drop off it.
else form_give_focus(curframe);
key = 0;
}
break;
case 0x00d:
{
char url[MaxUrlLen + 1];
/* Read the new URL from the URL bar writable */
ChkError(writablefield_get_value(0, i, DisplayURL, url, MaxUrlLen + 1, NULL));
#ifdef ALIAS_URLS
// Not implemented yet...
#endif
#ifdef HIDE_CGI
/* If HIDE_CGI is defined, the URL bar may have only part of */
/* the URL in it - the CGI information could be stripped off. */
/* In that case, check if the URL matches the browser's current */
/* one with the exception of the CGI stuff, and only do the */
/* fetch if not. */
if (
browser_current_url(b) && /* If there *is* a current URL, and */
!strncmp(browser_current_url(b), url, strlen(url)) && /* the URL bar matches the start of it... */
strlen(browser_current_url(b)) > strlen(url) && /* ...but there's more of the current URL left */
browser_current_url(b)[strlen(url)] == '?' /* ...and the first extra character is a '?', */
)
ChkError(fetchpage_new(b, browser_current_url(b), 1, 1)); /* ...then fetch the current URL instead. */
else ChkError(fetchpage_new(b, url, 1, 1)); /* Otherwise do what the user asked! */
#else
/* Start the new fetch */
ChkError(fetchpage_new(b, url, 1, 1));
#endif
return 1;
}
break;
}
}
}
/* Keypress wasn't from a URL bar, but was from something obtained */
/* within a browser window since we could get that window's tool */
/* bars from an ancestor object, which a main window doesn't have. */
else
{
/* Proceed if the keypress wasn't from an authorisation dialogue */
/* or a save dialogue */
if (
idb &&
idb->self_id != authorise_return_dialogue_id() &&
idb->self_id != save_return_dialogue_id()
)
{
if (key == 0x00d && b)
{
// Assume it was from an Open URL dialogue for now...
char c[MaxUrlLen + 1];
writablefield_get_value(0, idb->self_id, OpenWritable, c, MaxUrlLen + 1, NULL);
ChkError(fetchpage_new(b, c, 1, 1));
key = 0;
}
}
}
}
/* Keypress was not from an object obtained from a browser window, */
/* and if we couldn't find a client handle isn't from a browser */
/* window either. */
else
{
if (!b && key == 0x00d)
{
/* Not a browser window; must be a URL dialogue from the icon bar */
char c[MaxUrlLen + 1];
writablefield_get_value(0, idb->self_id, OpenWritable, c, MaxUrlLen + 1, NULL);
ChkError(windows_create_browser(c, NULL, NULL, NULL));
key = 0;
}
}
if (key) wimp_process_key(key);
return 1;
}
/*************************************************/
/* handle_keys_from_browser() */
/* */
/* Called when a Wimp key pressed event is */
/* generated for a specific browser window. */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_keys_from_browser(int eventcode, WimpPollBlock * block, IdBlock * idb, browser_data * handle)
{
int key = ((WimpKeyPressedEvent *) block)->key_code;
browser_data * ancestor;
browser_data * curframe;
if (!handle) return 0;
ancestor = utils_ancestor(handle);
curframe = ancestor->selected_frame;
if (!curframe) curframe = handle;
form_process_key(handle, &key);
/* If 'key' is non-zero, the forms library couldn't handle it */
switch (key)
{
/* Scrolling the page. Here, unlike the code above, the */
/* keypress is straight off the browser page, so unless */
/* the forms library has trapped the key, things such */
/* as left/right and copy/end can be used to move the */
/* page around as well as up/down etc. */
case akbd_PageUpK:
case akbd_PageDownK:
case akbd_HomeK:
case akbd_CopyK: /* Or 'End' */
case akbd_UpK:
case akbd_UpK + akbd_Ctl:
case akbd_UpK + akbd_Ctl + akbd_Sh:
case akbd_DownK:
case akbd_DownK + akbd_Ctl:
case akbd_DownK + akbd_Ctl + akbd_Sh:
case akbd_LeftK:
case akbd_LeftK + akbd_Sh:
case akbd_LeftK + akbd_Ctl:
case akbd_LeftK + akbd_Ctl + akbd_Sh:
case akbd_RightK:
case akbd_RightK + akbd_Sh:
case akbd_RightK + akbd_Ctl:
case akbd_RightK + akbd_Ctl + akbd_Sh:
{
int limit;
if (browser_move_selection(curframe, key))
{
key = 0;
_swix(OS_Byte, _INR(0,1), 21, 0); /* Flush keyboard buffer */
/* Rehighlight the frame if required */
if (choices.keephighlight) frames_highlight_frame(curframe);
}
else
{
if (!browser_scroll_page_by_key(curframe, key, &limit))
{
/* If limit is set, the window is scrolled as far as it */
/* will go - can we jump to another frame, then? (Only */
/* jumping out for certain key presses, though). */
if (
limit &&
(
key == akbd_UpK ||
key == akbd_DownK
)
)
{
browser_data * next = frames_find_another_frame(curframe, key == akbd_UpK ? 1 : 0);
if (next)
{
/* Another frame has been identified */
browser_clear_selection(curframe, 0);
/* Scroll the frame appropriately */
browser_scroll_page_v(next,
NULL,
key == akbd_UpK ? 0 : 1,
0,
0,
0x1000000,
NULL);
/* Make sure the ancestor(s) are updated */
ancestor->selected_frame = NULL;
ancestor = utils_ancestor(next);
ancestor->selected_frame = curframe = next;
/* Find a selectable */
browser_move_selection(curframe, key);
/* Highlight the frame */
frames_highlight_frame(curframe);
}
}
else
{
/* Scrolled page - rehighlight the frame if required */
if (choices.keephighlight) frames_highlight_frame(curframe);
}
}
key = 0;
_swix(OS_Byte, _INR(0,1), 21, 0);
}
}
break;
case akbd_TabK: if (!browser_give_general_focus(curframe)) key = 0;
break;
case 0x00d:
{
browser_data * owner;
owner = ancestor->selected_owner;
if (ancestor->selected && browser_check_visible(owner, NULL, ancestor->selected))
{
/* If an item is selected and at least partially visible, */
/* act as if it were clicked upon with Select */
if (
(ancestor->selected->style & IMG) &&
(ancestor->selected->type & TYPE_ISMAP) &&
!ancestor->in_image_map
)
{
/* For image maps, if not already selected, start keyboard */
/* navigation of the map. */
BBox box;
HStream * map = ancestor->selected;
if (!image_get_token_image_size(owner, map, &box))
{
WimpGetWindowStateBlock s;
int x, y;
s.window_handle = owner->window_handle;
ChkError(wimp_get_window_state(&s));
if (!image_get_token_image_position(owner, map, &x, &y))
{
x = coords_x_toscreen(x, (WimpRedrawWindowBlock *) &s);
y = coords_y_toscreen(y, (WimpRedrawWindowBlock *) &s);
box.xmin += x + 2;
box.ymin += y + 2;
box.xmax += x - 4;
box.ymax += y - 4;
// Re: Next line of code.
//
// Why? Can't easily force rectangle constraint, as
// whenever the pointer changes shape it is unconstrained.
// So the navigation function has to handle being called
// with the pointer moved off the map (and it does); so
// this isn't wanted, really...
//
// Still, left in just in case it's needed for something!
//
// /* Constrain the pointer to the image map rectangle */
//
// mouse_rectangle(&box, 1);
/* Move x and y to the middle of the image map */
x += (box.xmax - box.xmin) / 2, y += (box.ymax - box.ymin) / 2;
/* Move pointer, and update internal details of what pointer is over */
mouse_to(x, y, 0);
owner->pointer_over = ancestor->pointer_over = map;
browser_pointer_check(0, NULL,NULL, owner);
mouse_set_pointer_shape(Mouse_Shape_Map);
mouse_watch_pointer_control(0);
mouse_pointer_on();
owner->in_image_map = ancestor->in_image_map = 1;
return 1;
}
}
}
else
{
/* Not an image map, or a selected map - so follow the link. */
owner->pointer_over = NULL;
browser_pointer_check(0, NULL,NULL, owner);
if (choices.keyboardctl)
{
mouse_pointer_off();
mouse_watch_pointer_control(1);
}
handle_link_clicks(-1, NULL, NULL, owner);
}
}
}
break;
default:
{
/* In merged status bar situations, want alphanumeric characters */
/* to pop up the URL writable with that key in it. */
if (isalnum(key)) /* Wimp_ProcessKey numbers are equal to ASCII codes for alphanumerics */
{
handle_go_to_with_key(handle, (char) key, choices.clearfirst);
key = 0;
}
}
}
if (key) ChkError(wimp_process_key(key));
return 1;
}
/*************************************************/
/* handle_menus() */
/* */
/* Deal with menu selection events from the Wimp */
/* (for forms etc.). Parameters are as standard */
/* for a Wimp event handler. */
/*************************************************/
int handle_menus(int eventcode, WimpPollBlock * block, IdBlock * idb, void * handle)
{
switch (menusrc)
{
case Menu_Form: form_select_menu_event(block);
break;
case Menu_History: ChkError(history_menu_selection((browser_data *) menuhdl, block));
break;
default: return 0;
}
return 1;
}
/*************************************************/
/* handle_scroll_requests() */
/* */
/* Deal with Scroll Request events from the Wimp */
/* (e.g. for page up/down). Parameters are as */
/* standard for a Wimp event handler. */
/*************************************************/
int handle_scroll_requests(int eventcode, WimpPollBlock * b, IdBlock * idb, browser_data * handle)
{
if (b->scroll_request.yscroll)
{
ChkError(browser_scroll_page_v(handle,
&b->scroll_request.open,
b->scroll_request.yscroll > 0,
b->scroll_request.yscroll == 2 || b->scroll_request.yscroll == -2,
b->scroll_request.yscroll == 1 || b->scroll_request.yscroll == -1,
0,
NULL));
}
if (b->scroll_request.xscroll)
{
ChkError(browser_scroll_page_h(handle,
&b->scroll_request.open,
b->scroll_request.xscroll < 0,
b->scroll_request.xscroll == 2 || b->scroll_request.xscroll == -2,
b->scroll_request.xscroll == 1 || b->scroll_request.xscroll == -1,
0,
NULL));
}
return 1;
}
/*************************************************/
/* handle_history_menu_popup() */
/* */
/* Handles clicks on a history menu popup item. */
/* */
/* Parameters: Pointer to a browser_data struct */
/* relevant to the history to show; */
/* */
/* Object ID of the toolbar holding */
/* the popup; */
/* */
/* Component ID of the item that was */
/* clicked on (DisplayMLeft or */
/* DisplayMenu - see TBEvents.h); */
/* */
/* 1 to show the URLs, 0 to show */
/* page titles where available. */
/*************************************************/
static _kernel_oserror * handle_history_menu_popup(browser_data * b, ObjectId toolbar, ComponentId left_or_right, int show_urls)
{
_kernel_oserror * e;
WimpGetWindowStateBlock state;
BBox menu;
/* If there's already a menu open, close it */
/* (so the action is to toggle the menu). */
if (menusrc == Menu_History && menuhdl == b)
{
menusrc = Menu_None;
menuhdl = NULL;
return wimp_create_menu((void *) -1, 0, 0);
}
/* Get the Wimp handle for the tool bar and get the window state */
e = window_get_wimp_handle(0, toolbar, &state.window_handle);
if (e) return e;
e = wimp_get_window_state(&state);
if (e) return e;
/* Get the bounding box of the popup icon that was used */
e = gadget_get_bbox(0, toolbar, left_or_right, &menu);
if (e) return e;
/* Convert that to screen coords ready for opening the menu */
/* next to it. */
coords_box_toscreen(&menu, (WimpRedrawWindowBlock *) &state);
/* The menu about to be shown is a History list, from the browser */
/* window tool bar. Ask the History code to build the menu. */
if (left_or_right == DisplayMenu)
{
/* Build and show menu to right of menu icon for DisplayMenu object */
e = (history_build_menu(b,
menu.xmax - 2,
menu.ymax,
show_urls,
0));
if (e) return e;
}
else
{
/* Otherwise, show it to the left of the icon */
e = history_build_menu(b,
menu.xmin - 4,
menu.ymin + 4,
show_urls,
1);
if (e) return e;
}
return NULL;
}
/*************************************************/
/* handle_clicks() */
/* */
/* Deal with mouse click events from the wimp, */
/* for specific object IDs. Parameters are as */
/* standard for a Wimp event handler. */
/*************************************************/
int handle_clicks(int eventcode, WimpPollBlock * b, IdBlock * idb, browser_data * handle)
{
/* Process the event only if the browser_data structure contents */
/* match the ancestor ID of the item clicked upon - i.e. if a */
/* toolbar has been clicked upon. */
if (idb->ancestor_id == handle->self_id)
{
/* If the toolbox hasn't filled in the component ID, e.g. because */
/* icon flags were forced to change to give a button type the */
/* Toolbox didn't expect, fill it in now. */
if (idb->self_component == -1)
{
if (
window_wimp_to_toolbox(0,
b->mouse_click.window_handle,
b->mouse_click.icon_handle,
&idb->self_id,
&idb->self_component)
)
return 0;
}
switch (idb->self_component)
{
case StatsCover: /* Clicking on a covering gadget is equivalent */
case DisplayStats: /* to clicking on the underlying gadget instead */
{
/* If the URL writable and status display are merged, want to */
/* now swap the display for the writable and put the caret in */
/* the field. */
if (handle->merged_url)
{
toolbars_merged_to_url(handle, idb->self_id);
gadget_set_focus(0, idb->self_id, DisplayURL);
}
}
break;
case DisplayMLeft: /* Drop through to DisplayMenu case */
case DisplayMenu:
{
ChkError(handle_history_menu_popup(handle,
idb->self_id,
idb->self_component,
b->mouse_click.buttons & Wimp_MouseButtonMenu ? !choices.show_urls : choices.show_urls));
}
break;
}
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
toolbars_set_button_states(handle);
return 1;
}
return 0;
}
/*************************************************/
/* handle_link_clicks() */
/* */
/* Deal with mouse click events from the wimp, */
/* on gadgets in the browser window. Parameters */
/* are as standard for a Wimp event handler. */
/*************************************************/
int handle_link_clicks(int eventcode, WimpPollBlock * b, IdBlock * idb, browser_data * handle)
{
HStream * p = NULL;
int ox, oy, adj, used = 0;
WimpGetPointerInfoBlock i;
browser_data * ancestor = utils_ancestor(handle);
browser_data * owner;
owner = ancestor->selected_owner;
/* There are circumstances under which pointer watching, to see if */
/* the mouse pointer should be turned off, is disabled but should */
/* be enabled at this stage. If this is so, turn it back on. */
if (choices.keyboardctl && ancestor->selected)
{
owner->pointer_over = NULL;
browser_pointer_check(0, NULL, NULL, owner);
mouse_watch_pointer_control(1);
}
/* If this is entered with an event code of -1, this signals that */
/* the keyboard handler is calling the function. In that case, */
/* the routine will treat the item in handle->selected as if it */
/* were clicked on with Select. */
/* */
/* Otherwise, the token that was clicked on is discovered */
/* from the pointer position, and the mouse button used from the */
/* actual mouse button state. */
if (eventcode >= 0 && b->mouse_click.buttons & Wimp_MouseButtonMenu) return 0;
/* Use adjust() as this may return special information if running Full Screen. */
adj = (fixed.ignoreadjust || eventcode < 0) ? 0 : adjust();
/* Get the token that was clicked upon, if any. */
if (eventcode >= 0)
{
ChkError(wimp_get_pointer_info(&i));
p = browser_get_pointer_token(handle, &i, &ox, &oy);
}
else p = ancestor->selected, handle = owner;
if (p)
{
int shift;
/* Is shift held down? */
_swix(OS_Byte,_INR(0,1)|_OUT(1),121,128,&shift);
/* First - forms. */
if (
(p->style & FORM) &&
(
(p->style & INPUT) ||
(p->style & TEXTAREA) ||
(p->style & SELECT)
)
)
{
int x = 0, y = 0;
/* Get the offset into an IMAGE button type */
if ((p->style & INPUT) && HtmlINPUTtype(p) == inputtype_IMAGE && eventcode >= 0)
{
ChkError(image_return_click_offset(handle, p, &i, &x, &y));
}
ChkError(form_click_field(handle, p, 0, x, y));
used = 1;
}
else
{
/* If the token is an anchor, flash it briefly. This isn't done */
/* for images unless they're turned off and the image has ALT */
/* text, which would show the highlight. */
if (
p->anchor &&
(
!(p->style & IMG) ||
(
(p->style & IMG) &&
p->text &&
handle->displayed != Display_External_Image &&
!image_token_fetched(handle, p)
)
)
)
{
history_record_global(p->anchor);
browser_flash_token(handle, p);
used = 1;
}
/* If shift is not held down, and we have a link, follow the link */
if (!shift)
{
if (p->anchor)
{
int ignore = 0;
/* First, do we have JavaScript code to deal with? */
if (p->onclick && *p->onclick) ChkError(javascript_href_onclick(handle, p, &ignore));
/* If ignore is zero, we're supposed to deal with the HREF attribute */
/* on the link - otherwise, ignore it. */
if (!ignore)
{
/* Image maps */
if ((p->style & IMG) && (p->type & TYPE_ISMAP))
{
char coords[64];
browser_data * targetted;
if (eventcode < 0)
{
ChkError(wimp_get_pointer_info(&i));
p = browser_get_pointer_token(handle, &i, NULL, NULL);
if (!p) return 0;
}
/* Find out which pixel we clicked on */
ChkError(image_return_click_offset(handle, p, &i, &ox, &oy));
if (ox >= 0 && oy >= 0)
{
/* Build an appropriate CGI string including this information. */
sprintf(coords, "?%d,%d", ox, oy);
history_record_global(p->anchor);
targetted = frames_find_target(handle, p);
if (targetted || choices.full_screen)
{
/* If a named target was found, open in that. Otherwise we must */
/* be running full screen, so can't open a new window; in this */
/* case, open in the ancestor. */
ChkError(fetchpage_new_add(targetted ? targetted : ancestor,
p->anchor,
1,
1,
coords,
adj));
}
else
{
/* If we've reached here, a named target wasn't found but the */
/* browser isn't running full screen either, so open a new */
/* window with the name specified in the link. */
ChkError(windows_create_browser(p->anchor,
NULL,
NULL,
p->target));
}
}
used = 1;
}
/* Otherwise, a simple link */
else
{
if (!adj)
{
browser_data * targetted;
history_record_global(p->anchor);
targetted = frames_find_target(handle, p);
/* Don't want to ever open a new window if configured */
/* to run full screen. */
if (targetted || choices.full_screen)
{
/* If a named target was found, open in that. Otherwise we must */
/* be running full screen, so can't open a new window; in this */
/* case, open in the ancestor. */
ChkError(fetchpage_new(targetted ? targetted : ancestor,
p->anchor,
1,
1));
}
else
{
/* If we've reached here, a named target wasn't found but the */
/* browser isn't running full screen either, so open a new */
/* window with the name specified in the link. */
ChkError(windows_create_browser(p->anchor,
NULL,
NULL,
p->target));
}
}
/* Yes, this 'else' would mean that even if running */
/* full screen, an Adjust click would open a new */
/* window - but note the fixed.ignoreadjust choices */
/* option, which disables the use of adjust and can */
/* be used in conjunction with the full screen */
/* option. */
else ChkError(windows_create_browser(p->anchor,
NULL,
NULL,
NULL));
used = 1;
}
}
else
{
/* The JavaScript routines said that the HREF contents of the link */
/* should be ignored; so just flag that we've dealt with this, but */
/* do nothing else. */
used = 1;
}
}
// else
// {
// WimpDragBox box;
//
// box.wimp_window = handle->window_handle;
// box.drag_type = 12; /* Horizontal and vertical drag to scroll */
//
// box.dragging_box.xmin = b->mouse_click.mouse_x;
// box.dragging_box.ymin = b->mouse_click.mouse_y;
// box.dragging_box.xmax = b->mouse_click.mouse_x;
// box.dragging_box.ymax = b->mouse_click.mouse_y;
//
// wimp_drag_box(&box);
// }
}
else
{
/* If shift is held down but this isn't an image, and it's */
/* a link, then again, follow that link. */
/* */
/* This behaviour is due to change (save link contents). */
/* Note that JavaScript onClick events are not activated */
/* if you shift+click (this is deliberate!). */
if (p->anchor && !(p->style & IMG))
{
if (!adj) ChkError(fetchpage_new(handle,
p->anchor,
1,
1));
else ChkError(windows_create_browser(p->anchor,
NULL,
NULL,
NULL));
used = 1;
}
/* If it's an image, reload it (this may load the image for */
/* the first time if image loading had been suspended). */
else if (p->style & IMG)
{
image_reload(handle, p);
used = 1;
}
}
}
}
/* For mouse clicks, if nothing has flagged that the click was used */
/* in some way, place the input focus generally into the ancestor */
/* window and mark the frame as selected. */
if (eventcode >= 0 && !used)
{
wimp_set_caret_position(ancestor->window_handle, -1, 0, 0, -1, -1);
ancestor->selected_frame = handle;
frames_highlight_frame(handle);
/* If there's an object selected in another frame, must move */
/* the selection to this one - otherwise, keyboard movement */
/* would jump back to the other one. */
if (ancestor->selected && ancestor->selected_owner != handle)
{
if (ancestor->selected_owner) browser_clear_selection(ancestor->selected_owner, 0);
ancestor->selected_owner = NULL; /* Make sure these */
ancestor->selected = NULL; /* are cleared... */
browser_move_selection(handle, akbd_DownK);
}
}
return 1;
}
/*************************************************/
/* handle_close_browser() */
/* */
/* Close a browser window, and frames within it. */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_close_browser(int eventcode, WimpPollBlock * b, IdBlock * idb, browser_data * handle)
{
frames_collapse_set(handle);
windows_close_browser(handle);
return 1;
}
/*************************************************/
/* handle_home() */
/* */
/* Handles clicks on the Home button. Parameters */
/* are as standard for a Toolbox event handler. */
/*************************************************/
int handle_home(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
int from_menu = 0;
browser_data * b;
char home[2048];
handlers_get_call_info(&b, NULL, idb, ButtonHome);
from_menu = handlers_menu_or_toolbar(idb);
urlutils_create_home_url(home, sizeof(home));
if (from_menu || fixed.ignoreadjust || !adjust()) ChkError(fetchpage_new(b, home, 1, 1));
else ChkError(windows_create_browser(home, NULL, NULL, NULL));
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_back() */
/* */
/* Handles clicks on the Back button. Parameters */
/* are as standard for a Toolbox event handler. */
/*************************************************/
int handle_back(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
int from_menu = 0;
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonBack);
from_menu = handlers_menu_or_toolbar(idb);
ChkError(history_fetch_backwards(b, (from_menu || fixed.ignoreadjust) ? 0 : adjust()));
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_forward() */
/* */
/* Handles clicks on the Forward button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_forwards(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
int from_menu = 0;
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonForward);
from_menu = handlers_menu_or_toolbar(idb);
ChkError(history_fetch_forwards(b, (from_menu || fixed.ignoreadjust) ? 0 : adjust()));
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_stop() */
/* */
/* Handles clicks on the Stop button. Parameters */
/* are as standard for a Toolbox event handler. */
/*************************************************/
int handle_stop(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonStop);
/* If using the tristate TriState_Go_GoTo_Stop, */
/* then stop kills everything first time. Else, */
/* it stops everything except image fetches, */
/* then stops image fetches too. */
if (b->tristate != TriState_Go_GoTo_Stop)
{
if (frames_fetching(b)) frames_abort_fetching(utils_ancestor(b), 0);
else frames_abort_fetching(utils_ancestor(b), 1);
}
else frames_abort_fetching(utils_ancestor(b), 1);
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
ChkError(toolbars_set_button_states(b));
/* Broadcast an AppControl message to stop any further */
/* activity in WebServ - this will eventually be directed */
/* straight at WebServ rather than broadcast... */
if (fixed.stopwebserv && !b->ancestor) ChkError(utils_stop_webserv());
return 1;
}
/*************************************************/
/* handle_reload() */
/* */
/* Handles clicks on the Reload button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_reload(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
_kernel_oserror * e;
browser_data * b;
ObjectId t;
int new_view;
int from_menu = 0;
handlers_get_call_info(&b, &t, idb, ButtonReload);
from_menu = handlers_menu_or_toolbar(idb);
new_view = (from_menu || fixed.ignoreadjust) ? 0 : adjust();
/* If there's a displayed URL already, reload it */
if (b->urlddata)
{
/* If not going to a new view, set the reloading flag and */
/* get the URL; if this is fails for whatever reason, */
/* don't forget to clear the reloadng flag before */
/* reporting the error. */
if (!new_view)
{
b->reloading = 1;
e = fetchpage_new(b, b->urlddata, 0, 1);
if (e)
{
b->reloading = 0;
show_error_ret(e);
}
}
/* Otherwise, just fetch the URL in a new window. */
else ChkError(windows_create_browser(b->urlddata, NULL, NULL, NULL));
}
else
{
/* Otherwise, get a URL string from the URL bar and do */
/* a fresh load of that. */
char url[MaxUrlLen];
memset(url, 0, sizeof(url));
writablefield_get_value(0, t, DisplayURL, url, MaxUrlLen, NULL);
if (*url)
{
if (!new_view) ChkError(fetchpage_new(b, url, 1, 1));
else ChkError(windows_create_browser(url, NULL, NULL, NULL));
}
}
/* Grey / ungrey buttons, as the state may change as */
/* a result of being selected. */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_view_hotlist() */
/* */
/* Handles clicks on the View Hotlist button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_view_hotlist(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
char path[2048];
int from_menu = 0;
handlers_get_call_info(&b, NULL, idb, ButtonViewHot);
from_menu = handlers_menu_or_toolbar(idb);
/* Create the hotlist URL */
urlutils_create_hotlist_url(path, sizeof(path));
/* Deal with appending the current URL, if necessary */
// For future implementation:
//
// if (fixed.appendurls)
// {
// char url[2048];
//
// if (browser_current_url(b))
// {
// StrNCpy0(url, browser_current_url(b));
// history_record_local(b, url);
// }
//
// history_pull_local_last(b, url, sizeof(url));
//
// Then do the rest on url, instead of browser_current_url.
if (fixed.appendurls && browser_current_url(b))
{
int len;
lookup_token("AppendWith:?url=",0,0);
/* Need to translate some chars, so working out the length of the final */
/* string is a little complex. */
len = strlen(path) + strlen(tokens);
if (len + 1 < sizeof(path))
{
char * p = browser_current_url(b);
strcat(path, tokens);
while (*p && len + 4 < sizeof(path)) /* +4 = +1 for terminator, +3 for maximum step size within loop */
{
if (isalnum(*p)) path[len] = *p, len++;
else
{
sprintf(path + len, "%%%02X", *p);
len += 3;
}
p++;
}
if (len >= sizeof(path)) len = sizeof(path) - 1;
path[len] = 0;
}
}
/* Finally, fetch the required hotlist */
if (adjust() && !from_menu && !fixed.ignoreadjust) ChkError(windows_create_browser(path, NULL, NULL, NULL));
else ChkError(fetchpage_new(b, path, 1, 1));
return 1;
}
/*************************************************/
/* handle_add_hotlist() */
/* */
/* Handles clicks on the Add To Hotlist button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_add_hotlist(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
return 0;
}
/*************************************************/
/* handle_view_resources() */
/* */
/* Handles clicks on the View Resources button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_view_resources(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
return 0;
}
/*************************************************/
/* handle_load_images() */
/* */
/* Handles clicks on the Load Images button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_load_images(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
return 0;
}
/*************************************************/
/* handle_view_source() */
/* */
/* Handles clicks on the View Source button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_view_source(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
return 0;
}
/*************************************************/
/* handle_go_to() */
/* */
/* Handles clicks on the Go To button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_go_to(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
ObjectId t;
handlers_get_call_info(&b, &t, idb, ButtonGoTo);
/* Ensure the URL bar is up to date, if the URL writable and */
/* status displays are merged then change to the URL display */
/* and finally give the window the input focus. */
toolbars_update_url(b);
if (b->merged_url) toolbars_merged_to_url(b, t);
if (t) gadget_set_focus(0, t, DisplayURL);
/* Update the buttons and exit */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_go_to_with_key() */
/* */
/* Handles going to a 'go to' state (merged */
/* toolbar showing the URL writable instead of */
/* the status display) with a given character */
/* entered into that writable. */
/* */
/* Parameters: Pointer to a browser_data struct */
/* relevant to the toolbar; */
/* */
/* The character to append to the */
/* writable field's contents; */
/* */
/* 1 to in fact clear the writable */
/* before putting the character in, */
/* else 0 to append to existing */
/* contents. */
/*************************************************/
static void handle_go_to_with_key(browser_data * b, char c, int clear)
{
ObjectId t;
char url[MaxUrlLen + 1];
char cat[2];
t = toolbars_get_upper(b);
/* Ensure the URL bar is up to date, if the URL writable and */
/* status displays are merged then change to the URL display */
/* and finally give the window the input focus. */
toolbars_update_url(b);
/* (Append the given character) */
if (clear)
{
url[0] = c;
url[1] = 0;
}
else
{
writablefield_get_value(0, t, DisplayURL, url, sizeof(url), NULL);
if (strlen(url) < MaxUrlLen)
{
cat[0] = c;
cat[1] = 0;
strcat(url, cat);
}
}
writablefield_set_value(0, t, DisplayURL, url);
/* (Show the writable / give the input focus) */
if (b->merged_url) toolbars_merged_to_url(b, t);
if (t) gadget_set_focus(0, t, DisplayURL);
/* Update the buttons and exit. */
ChkError(toolbars_set_button_states(b));
return;
}
/*************************************************/
/* handle_go() */
/* */
/* Handles clicks on the Go button. Parameters */
/* are as standard for a Toolbox event handler. */
/*************************************************/
int handle_go(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
WimpKeyPressedEvent keys;
IdBlock id;
handlers_get_call_info(&b, NULL, idb, ButtonGo);
// Nasty... But then robust, as quite a lot goes on in the key handler
// and duplicating the code would lead to problems if it gets out of
// sync.
/* Fake a keyboard pressed event from the URL bar for the key handler */
keys.key_code = 0x00d;
id.ancestor_id = b->self_id;
id.self_id = toolbars_get_upper(b);
id.self_component = DisplayURL;
return handle_keys(eventcode, (WimpPollBlock *) &keys, &id, NULL);
}
/*************************************************/
/* handle_cancel() */
/* */
/* Handles clicks on the Cancel button. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_cancel(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonCancel);
/* If the URL writable and status display are merged, switch to */
/* status display. Update the URL bar with the original text, */
/* cancelling any changes made by the user, and set the caret */
/* position by the general method (so focus may go to a form, */
/* the URL writable, or the page generally). */
if (b->merged_url) toolbars_merged_to_status(b, toolbars_get_upper(b));
toolbars_update_url(b);
browser_give_general_focus(b);
/* Update the buttons and exit */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_bistate() */
/* */
/* Handles the EBiStateKeyed event, which says */
/* that the bistate button should be actioned. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_bistate(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonBi);
/* Deal with each button type individually */
switch (b->bistate)
{
case BiState_Cancel_Back:
{
if (!b->bistate_state) return handle_cancel(eventcode, event, idb, handle);
else return handle_back(eventcode, event, idb, handle);
}
break;
}
return 0;
}
/*************************************************/
/* handle_tristate() */
/* */
/* Handles the ETriStateKeyed event, which says */
/* that the tristate button should be actioned. */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_tristate(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
handlers_get_call_info(&b, NULL, idb, ButtonTri);
/* Deal with each button type individually */
switch (b->bistate)
{
case TriState_Go_GoTo_Stop:
{
switch (b->tristate_state)
{
case 0: return handle_go(eventcode, event, idb, handle);
break;
case 1: return handle_go_to(eventcode, event, idb, handle);
break;
case 2: return handle_stop(eventcode, event, idb, handle);
break;
}
}
break;
}
return 0;
}
/*************************************************/
/* handle_clear_url() */
/* */
/* Clears the URL writable (like Ctrl+U), */
/* assuming the input focus is in the relevant */
/* place... */
/* */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_clear_url(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
WimpGetCaretPositionBlock caret;
browser_data * b;
ObjectId t;
char url[2];
ChkError(wimp_get_caret_position(&caret));
if (caret.icon_handle < 0 || caret.height < 0 || caret.index < 0) return 0;
ChkError(toolbox_get_client_handle(0, idb->ancestor_id, (void *) &b));
if (!b) return 0;
t = toolbars_get_upper(b);
/* Ensure the URL bar is up to date, if the URL writable and */
/* status displays are merged then change to the URL display */
/* and finally give the window the input focus. */
toolbars_update_url(b);
/* (Append the given character) */
url[0] = 0;
url[1] = 0;
writablefield_set_value(0, t, DisplayURL, url);
/* (Show the writable / give the input focus) */
if (b->merged_url) toolbars_merged_to_url(b, t);
if (t) gadget_set_focus(0, t, DisplayURL);
/* Update the buttons and exit. */
ChkError(toolbars_set_button_states(b));
return 1;
}
/*************************************************/
/* handle_show_history_menu() */
/* */
/* Opens the history menu near the menu popup */
/* gadget (acts as if that were clicked upon), */
/* presuming that gadget exists. */
/* */
/* Parameters are as standard for a Toolbox */
/* event handler. */
/*************************************************/
int handle_show_history_menu(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
ObjectId t;
BBox test;
int which;
ChkError(toolbox_get_client_handle(0,
idb->ancestor_id ? idb->ancestor_id : idb->self_id,
(void *) &b));
if (!b) return 0;
t = toolbars_get_upper(b);
/* Is the popup present (either the 'to the left' or */
/* the 'to the right' version)? */
if (!gadget_get_bbox(0, t, DisplayMenu, &test)) which = 1;
else if (!gadget_get_bbox(0, t, DisplayMLeft, &test)) which = 2;
else which = 0;
if (which)
{
/* Show the menu */
ChkError(handle_history_menu_popup(b,
t,
which == 1 ? DisplayMenu : DisplayMLeft,
choices.show_urls));
return 1;
}
/* Gadget isn't present, so can't open the menu */
return 0;
}
/*************************************************/
/* handle_show_info() */
/* */
/* Put version number in program info window; */
/* called on a ProgInfo_AboutToBeShown event. */
/* Parameters are as standard for a Toolbox */
/* event handler */
/*************************************************/
int handle_show_info(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
ChkError(proginfo_set_version(0,
idb->self_id,
lookup_token("Version:Unknown!",1,0)));
return 1;
}
/*************************************************/
/* handle_quit() */
/* */
/* Deal with a Quit_Quit event from any source; */
/* parameters are as standard for a Toolbox */
/* event handler */
/*************************************************/
int handle_quit(int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle)
{
browser_data * b;
/* Ensure the pointer is visible */
mouse_pointer_on();
/* Close all open windows, thereby freeing memory and terminating */
/* any open connections. This may take some time, so put up an */
/* hourglass. */
_swix(Hourglass_Start, _IN(0), 10);
while (last_browser)
{
b = last_browser;
while (b && b->ancestor) b = b->previous;
if (b && !b->ancestor) handle_close_browser(0, NULL, NULL, b);
}
_swix(Hourglass_Off, 0);
/* Signal that the application should exit through setting 'quit'. */
quit = 1;
return 1;
}
/*************************************************/
/* handle_lose_caret() */
/* */
/* Call to drag the input focus back to the */
/* window in case it is lost. */
/* */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_lose_caret(int eventcode, WimpPollBlock * block, IdBlock * idb, void * handle)
{
if (fixed.keepcaret)
{
WimpGetPointerInfoBlock i;
int handle;
/* Only grab the caret if this task owns the window */
/* the pointer is currently over. */
ChkError(wimp_get_pointer_info(&i));
handle = task_from_window(i.window_handle);
if (handle == task_handle)
{
WimpGetCaretPositionBlock caret;
/* The pointer is over a browser-owned window, but if the */
/* caret is also in a browser-owned window, don't want to */
/* move it right now. */
if (wimp_get_caret_position(&caret)) return 0;
handle = task_from_window(caret.window_handle);
/* If we don't own the window the caret has moved to, */
/* grab it back into the browser window. */
if (handle != task_handle) browser_give_general_focus(last_browser);
return 1;
}
}
return 0;
}
/*************************************************/
/* handle_dialler_display() */
/* */
/* A null event handler to update the dialler */
/* status display field, if present. */
/* */
/* Parameters are as standard for a Wimp event */
/* handler. */
/*************************************************/
int handle_dialler_display(int eventcode, WimpPollBlock * b, IdBlock * idb, browser_data * handle)
{
if (handle->url_bar) ChkError(toolbars_update_dialler_time(handle));
return 0;
}
/*************************************************/
/* handle_dialler_service() */
/* */
/* Handles Message_Service messages from the */
/* TaskModule module, which may be (for example) */
/* watching out for 'status changed' service */
/* calls from the Dialler. */
/* */
/* Parameters are as standard for a Wimp message */
/* handler. */
/*************************************************/
int handle_dialler_service(WimpMessage * m, void * handle)
{
browser_data * b = (browser_data *) handle;
_kernel_swi_regs * r;
if (!is_known_browser(b)) return 0;
if (m->hdr.action_code != Message_Service) return 0;
r = (_kernel_swi_regs *) &m->data;
if (r->r[1] == Service_DiallerStatus)
{
if (b->url_bar) ChkError(toolbars_update_dialler_status(b));
return 1;
}
return 0;
}
/*************************************************/