1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
|
(***********************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
(* \VV/ *************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(***********************************************************************)
(* $Id$ *)
open Preferences
open Vernacexpr
open Coq
open Ideutils
open Format
let out_some s = match s with
| None -> failwith "Internal error in out_some" | Some f -> f
let cb_ = ref None
let cb () = ((out_some !cb_):GData.clipboard)
let last_cb_content = ref ""
let yes_icon = `YES
let no_icon = `NO
let save_icon = `SAVE
let saveas_icon = `SAVE_AS
let warning_icon = `DIALOG_WARNING
let dialog_size = `DIALOG
let small_size = `SMALL_TOOLBAR
let initial_cwd = Sys.getcwd ()
let (message_view:GText.view option ref) = ref None
let (proof_view:GText.view option ref) = ref None
let (_notebook:GPack.notebook option ref) = ref None
let notebook () = out_some !_notebook
(* Tabs contain the name of the edited file and 2 status informations:
Saved state + Focused proof buffer *)
let decompose_tab w =
let vbox = new GPack.box ((Gobject.try_cast w "GtkBox"):Gtk.box Gtk.obj) in
let l = vbox#children in
match l with
| [img;lbl] ->
let img = new GMisc.image
((Gobject.try_cast img#as_widget "GtkImage"):
Gtk.image Gtk.obj)
in
let lbl = GMisc.label_cast lbl in
vbox,img,lbl
| _ -> assert false
let set_tab_label i n =
let nb = notebook () in
let _,_,lbl = decompose_tab (nb#get_tab_label(nb#get_nth_page i))#as_widget
in
lbl#set_use_markup true;
(* lbl#set_text n *) lbl#set_label n
let set_tab_image i s =
let nb = notebook () in
let _,img,_ = decompose_tab (nb#get_tab_label(nb#get_nth_page i))#as_widget
in
img#set_icon_size small_size;
img#set_stock s
let set_current_tab_image s = set_tab_image (notebook())#current_page s
let set_current_tab_label n = set_tab_label (notebook())#current_page n
let get_tab_label i =
let nb = notebook () in
let _,_,lbl = decompose_tab (nb#get_tab_label(nb#get_nth_page i))#as_widget
in
lbl#text
let get_full_tab_label i =
let nb = notebook () in
let _,_,lbl = decompose_tab (nb#get_tab_label(nb#get_nth_page i))#as_widget
in
lbl
let get_current_tab_label () = get_tab_label (notebook())#current_page
let get_current_page () =
let i = (notebook())#current_page in
(notebook())#get_nth_page i
(* This function must remove "focused proof" decoration *)
let reset_tab_label i =
set_tab_label i (get_tab_label i)
let to_do_on_page_switch = ref []
module Vector = struct
exception Found of int
type 'a t = ('a option) array ref
let create () = ref [||]
let get t i = out_some (Array.get !t i)
let set t i v = Array.set !t i (Some v)
let remove t i = Array.set !t i None
let append t e = t := Array.append !t [|Some e|]; (Array.length !t)-1
let iter f t = Array.iter (function | None -> () | Some x -> f x) !t
let find_or_fail f t =
let test i = function | None -> () | Some e -> if f e then raise (Found i) in
Array.iteri test t
let exists f t =
let l = Array.length !t in
let rec test i =
(i < l) && (((!t.(i) <> None) && f (out_some !t.(i))) || test (i+1))
in
test 0
end
type 'a viewable_script =
{view : Undo.undoable_view;
mutable analyzed_view : 'a option;
}
class type analyzed_views=
object('self)
val mutable act_id : GtkSignal.id option
val current_all : 'self viewable_script
val mutable deact_id : GtkSignal.id option
val input_buffer : GText.buffer
val input_view : Undo.undoable_view
val last_array : string array
val mutable last_index : bool
val message_buffer : GText.buffer
val message_view : GText.view
val proof_buffer : GText.buffer
val proof_view : GText.view
val mutable is_active : bool
val mutable read_only : bool
val mutable filename : string option
val mutable stats : Unix.stats option
val mutable detached_views : GWindow.window list
method without_auto_complete : 'a 'b. ('a -> 'b) -> 'a -> 'b
method set_auto_complete : bool -> unit
method kill_detached_views : unit -> unit
method add_detached_view : GWindow.window -> unit
method remove_detached_view : GWindow.window -> unit
method view : Undo.undoable_view
method filename : string option
method stats : Unix.stats option
method set_filename : string option -> unit
method update_stats : unit
method revert : unit
method auto_save : unit
method save : string -> bool
method save_as : string -> bool
method read_only : bool
method set_read_only : bool -> unit
method is_active : bool
method activate : unit -> unit
method active_keypress_handler : GdkEvent.Key.t -> bool
method backtrack_to : GText.iter -> unit
method backtrack_to_no_lock : GText.iter -> unit
method backtrack_to_insert : unit
method clear_message : unit
method deactivate : unit -> unit
method disconnected_keypress_handler : GdkEvent.Key.t -> bool
method electric_handler : GtkSignal.id
method find_phrase_starting_at :
GText.iter -> (GText.iter * GText.iter) option
method get_insert : GText.iter
method get_start_of_input : GText.iter
method indent_current_line : unit
method insert_command : string -> string -> unit
method insert_commands : (string * string) list -> unit
method insert_message : string -> unit
method insert_this_phrase_on_success :
bool -> bool -> bool -> string -> string -> bool
method process_next_phrase : bool -> bool -> bool
method process_until_insert_or_error : unit
method process_until_iter_or_error : GText.iter -> unit
method process_until_end_or_error : unit
method recenter_insert : unit
method reset_initial : unit
method send_to_coq :
bool -> string ->
bool -> bool -> bool -> (Util.loc * Vernacexpr.vernac_expr) option
method set_message : string -> unit
method show_goals : unit
method show_goals_full : unit
method undo_last_step : unit
method help_for_keyword : unit -> unit
method complete_at_offset : int -> bool
method blaster : unit -> unit
end
let (input_views:analyzed_views viewable_script Vector.t) = Vector.create ()
let signals_to_crash = [Sys.sigabrt; Sys.sigalrm; Sys.sigfpe; Sys.sighup;
Sys.sigill; Sys.sigpipe; Sys.sigquit;
(* Sys.sigsegv; Sys.sigterm;*) Sys.sigusr2]
let crash_save i =
(* ignore (Unix.sigprocmask Unix.SIG_BLOCK signals_to_crash);*)
Pervasives.prerr_endline "Trying to save all buffers in .crashcoqide files";
let count = ref 0 in
Vector.iter
(function {view=view; analyzed_view = Some av } ->
(let filename = match av#filename with
| None ->
incr count;
"Unnamed_coqscript_"^(string_of_int !count)^".crashcoqide"
| Some f -> f^".crashcoqide"
in
try
if try_export filename (view#buffer#get_text ()) then
Pervasives.prerr_endline ("Saved "^filename)
else Pervasives.prerr_endline ("Could not save "^filename)
with _ -> Pervasives.prerr_endline ("Could not save "^filename))
| _ -> Pervasives.prerr_endline "Unanalyzed view found. Please report."
)
input_views;
Pervasives.prerr_endline "Done. Please report.";
if i <> 127 then exit i
let ignore_break () =
List.iter
(fun i ->
try Sys.set_signal i (Sys.Signal_handle crash_save)
with _ -> prerr_endline "Signal ignored (normal if Win32)")
signals_to_crash;
Sys.set_signal Sys.sigint Sys.Signal_ignore
(* Locking machinery for Coq kernel *)
let coq_computing = Mutex.create ()
(* To prevent Coq from interrupting during undoing...*)
let coq_may_stop = Mutex.create ()
let break () =
if not (Mutex.try_lock coq_computing) then
begin
prerr_endline "Break received";
if Mutex.try_lock coq_may_stop then begin
Util.interrupt := true;
Mutex.unlock coq_may_stop
end else prerr_endline "Break discarded (coq may not stop now)";
end
else begin
Mutex.unlock coq_computing;
prerr_endline "Break received and discarded (not computing)"
end
let full_do_if_not_computing f x =
ignore (Thread.create
(async (fun () ->
if Mutex.try_lock coq_computing then begin
prerr_endline "Launching thread";
let w = Blaster_window.blaster_window () in
if not (Mutex.try_lock w#lock) then begin
break ();
let lck = Mutex.create () in
Mutex.lock lck;
prerr_endline "Waiting on blaster...";
Condition.wait w#blaster_killed lck;
prerr_endline "Waiting on blaster ok";
Mutex.unlock lck
end else Mutex.unlock w#lock;
let idle =
Glib.Timeout.add ~ms:300
~callback:(fun () -> !pulse ();true) in
begin
prerr_endline "Getting lock";
try
f x;
Glib.Timeout.remove idle;
prerr_endline "Releasing lock";
Mutex.unlock coq_computing;
with e ->
Glib.Timeout.remove idle;
prerr_endline "Releasing lock (on error)";
Mutex.unlock coq_computing;
raise e
end
end else
prerr_endline
"Discarded order (computations are ongoing)"))
())
let do_if_not_computing f x =
ignore (full_do_if_not_computing f x)
let add_input_view tv =
Vector.append input_views tv
let get_input_view i = Vector.get input_views i
let active_view = ref None
let get_active_view () = Vector.get input_views (out_some !active_view)
let set_active_view i =
(match !active_view with None -> () | Some i ->
reset_tab_label i);
(notebook ())#goto_page i;
let txt = get_current_tab_label () in
set_current_tab_label ("<span background=\"light green\">"^txt^"</span>");
active_view := Some i
let set_current_view i = (notebook ())#goto_page i
let kill_input_view i =
let v = Vector.get input_views i in
(match v.analyzed_view with
| Some v -> v#kill_detached_views ()
| None -> ());
v.view#destroy ();
v.analyzed_view <- None;
Vector.remove input_views i
let get_current_view_page () = (notebook ())#current_page
let get_current_view () = Vector.get input_views (notebook ())#current_page
let remove_current_view_page () =
let c = (notebook ())#current_page in
kill_input_view c;
((notebook ())#get_nth_page c)#misc#hide ()
let is_word_char c =
Glib.Unichar.isalnum c || c = underscore || c = prime || c = arobase
let starts_word it =
prerr_endline ("Starts word ? '"^(Glib.Utf8.from_unichar it#char)^"'");
(not it#copy#nocopy#backward_char ||
(let c = it#backward_char#char in
not (is_word_char c)))
let ends_word it =
(not it#copy#nocopy#forward_char ||
let c = it#forward_char#char in
not (Glib.Unichar.isalnum c || c = underscore || c = prime || c = arobase)
)
let inside_word it =
let c = it#char in
not (starts_word it) &&
not (ends_word it) &&
(Glib.Unichar.isalnum c || c = underscore || c = prime || c = arobase)
let is_on_word_limit it = inside_word it || ends_word it
let rec find_word_start it =
prerr_endline "Find word start";
if not it#nocopy#backward_char then
(prerr_endline "find_word_start: cannot backward"; it)
else if is_word_char it#char
then find_word_start it
else (it#nocopy#forward_char;
prerr_endline ("Word start at: "^(string_of_int it#offset));it)
let find_word_start (it:GText.iter) = find_word_start it#copy
let rec find_word_end it =
prerr_endline "Find word end";
if let c = it#char in c<>0 && is_word_char c
then begin
ignore (it#nocopy#forward_char);
find_word_end it
end else (prerr_endline ("Word end at: "^(string_of_int it#offset));it)
let find_word_end it = find_word_end it#copy
let get_word_around it =
let start = find_word_start it in
let stop = find_word_end it in
start,stop
let rec complete_backward w (it:GText.iter) =
prerr_endline "Complete backward...";
match it#backward_search w with
| None -> (prerr_endline "backward_search failed";None)
| Some (start,stop) ->
prerr_endline ("complete_backward got a match:"^(string_of_int start#offset)^(string_of_int stop#offset));
if starts_word start then
let ne = find_word_end stop in
if ne#compare stop = 0
then complete_backward w start
else Some (start,stop,ne)
else complete_backward w start
let rec complete_forward w (it:GText.iter) =
prerr_endline "Complete forward...";
match it#forward_search w with
| None -> None
| Some (start,stop) ->
if starts_word start then
let ne = find_word_end stop in
if ne#compare stop = 0 then
complete_forward w stop
else Some (stop,stop,ne)
else complete_forward w stop
(* Reset this to None on page change ! *)
let (last_completion:(string*int*int*bool) option ref) = ref None
let () = to_do_on_page_switch :=
(fun i -> last_completion := None)::!to_do_on_page_switch
let rec complete input_buffer w (offset:int) =
match !last_completion with
| Some (lw,loffset,lpos,backward)
when lw=w && loffset=offset ->
begin
let iter = input_buffer#get_iter (`OFFSET lpos) in
if backward then
match complete_backward w iter with
| None ->
last_completion :=
Some (lw,loffset,
(find_word_end
(input_buffer#get_iter (`OFFSET loffset)))#offset ,
false);
None
| Some (ss,start,stop) as result ->
last_completion :=
Some (w,offset,ss#offset,true);
result
else
match complete_forward w iter with
| None ->
last_completion := None;
None
| Some (ss,start,stop) as result ->
last_completion :=
Some (w,offset,ss#offset,false);
result
end
| _ -> begin
match complete_backward w (input_buffer#get_iter (`OFFSET offset)) with
| None ->
last_completion :=
Some (w,offset,(find_word_end (input_buffer#get_iter
(`OFFSET offset)))#offset,false);
complete input_buffer w offset
| Some (ss,start,stop) as result ->
last_completion := Some (w,offset,ss#offset,true);
result
end
let get_current_word () =
let av = out_some ((get_current_view ()).analyzed_view) in
match GtkBase.Clipboard.wait_for_text (cb ())#as_clipboard with
| None ->
prerr_endline "None selected";
let it = av#get_insert in
let start = find_word_start it in
let stop = find_word_end start in
av#view#buffer#move_mark `SEL_BOUND start;
av#view#buffer#move_mark `INSERT stop;
av#view#buffer#get_text ~slice:true ~start ~stop ()
| Some t ->
prerr_endline "Some selected";
prerr_endline t;
t
let input_channel b ic =
let buf = String.create 1024 and len = ref 0 in
while len := input ic buf 0 1024; !len > 0 do
Buffer.add_substring b buf 0 !len
done
let with_file name ~f =
let ic = open_in_gen [Open_rdonly;Open_creat] 0o644 name in
try f ic; close_in ic with exn ->
close_in ic; !flash_info ("Error: "^Printexc.to_string exn)
type info = {start:GText.mark;
stop:GText.mark;
ast:Util.loc * Vernacexpr.vernac_expr;
reset_info:Coq.reset_info;
}
exception Size of int
let (processed_stack:info Stack.t) = Stack.create ()
let push x = Stack.push x processed_stack
let pop () = try Stack.pop processed_stack with Stack.Empty -> raise (Size 0)
let top () = try Stack.top processed_stack with Stack.Empty -> raise (Size 0)
let is_empty () = Stack.is_empty processed_stack
(* push a new Coq phrase *)
let update_on_end_of_proof id =
let lookup_lemma = function
| { ast = _, ( VernacDefinition (_, _, ProveBody _, _)
| VernacDeclareTacticDefinition _
| VernacStartTheoremProof _) ;
reset_info = Reset (_, r) } ->
if not !r then begin
prerr_endline "Toggling Reset info to true";
r := true; raise Exit end
else begin
prerr_endline "Toggling Changing Reset id";
r := false
end
| { ast = _, (VernacAbort _ | VernacAbortAll | VernacGoal _) } -> raise Exit
| _ -> ()
in
try Stack.iter lookup_lemma processed_stack with Exit -> ()
let update_on_end_of_segment id =
let lookup_section = function
| { ast = _, ( VernacBeginSection id'
| VernacDefineModule (id',_,_,None)
| VernacDeclareModule (id',_,_,None)
| VernacDeclareModuleType (id',_,None));
reset_info = Reset (_, r) }
when id = id' -> raise Exit
| { reset_info = Reset (_, r) } -> r := false
| _ -> ()
in
try Stack.iter lookup_section processed_stack with Exit -> ()
let push_phrase start_of_phrase_mark end_of_phrase_mark ast =
let x = {start = start_of_phrase_mark;
stop = end_of_phrase_mark;
ast = ast;
reset_info = Coq.compute_reset_info (snd ast)
}
in
push x;
match snd ast with
| VernacEndProof (Proved (_, None)) -> update_on_end_of_proof ()
| VernacEndSegment id -> update_on_end_of_segment id
| _ -> ()
let repush_phrase x =
let x = { x with reset_info = Coq.compute_reset_info (snd x.ast) } in
push x;
match snd x.ast with
| VernacEndProof (Proved (_, None)) -> update_on_end_of_proof ()
| VernacEndSegment id -> update_on_end_of_segment id
| _ -> ()
(* For electric handlers *)
exception Found
(* For find_phrase_starting_at *)
exception Stop of int
let activate_input i =
(match !active_view with
| None -> ()
| Some n ->
let a_v = out_some (Vector.get input_views n).analyzed_view in
a_v#deactivate ();
a_v#reset_initial
);
let activate_function = (out_some (Vector.get input_views i).analyzed_view)#activate in
activate_function ();
set_active_view i
class analyzed_view index =
let {view = input_view_} as current_all_ = get_input_view index in
let proof_view_ = out_some !proof_view in
let message_view_ = out_some !message_view in
object(self)
val current_all = current_all_
val input_view = current_all_.view
val proof_view = out_some !proof_view
val message_view = out_some !message_view
val input_buffer = input_view_#buffer
val proof_buffer = proof_view_#buffer
val message_buffer = message_view_#buffer
val mutable is_active = false
val mutable read_only = false
val mutable filename = None
val mutable stats = None
val mutable last_modification_time = 0.
val mutable last_auto_save_time = 0.
val mutable detached_views = []
val mutable auto_complete_on = !current.auto_complete
method private toggle_auto_complete =
auto_complete_on <- not auto_complete_on
method set_auto_complete t = auto_complete_on <- t
method without_auto_complete : 'a 'b. ('a -> 'b) -> 'a -> 'b = fun f x ->
let old = auto_complete_on in
self#set_auto_complete false;
let y = f x in
self#set_auto_complete old;
y
method add_detached_view (w:GWindow.window) =
detached_views <- w::detached_views
method remove_detached_view (w:GWindow.window) =
detached_views <- List.filter (fun e -> w#misc#get_oid<>e#misc#get_oid) detached_views
method kill_detached_views () =
List.iter (fun w -> w#destroy ()) detached_views;
detached_views <- []
method view = input_view
method filename = filename
method stats = stats
method set_filename f =
filename <- f;
match f with
| Some f -> stats <- my_stat f
| None -> ()
method update_stats =
match filename with
| Some f -> stats <- my_stat f
| _ -> ()
method revert =
match filename with
| Some f -> begin
let do_revert () = begin
!push_info "Reverting buffer";
try
if is_active then self#reset_initial;
let b = Buffer.create 1024 in
with_file f ~f:(input_channel b);
let s = try_convert (Buffer.contents b) in
input_buffer#set_text s;
self#update_stats;
input_buffer#place_cursor input_buffer#start_iter;
input_buffer#set_modified false;
!pop_info ();
!flash_info "Buffer reverted";
Highlight.highlight_all input_buffer;
with _ ->
!pop_info ();
!flash_info "Warning: could not revert buffer";
end
in
if input_buffer#modified then
match (GToolbox.question_box
~title:"Modified buffer changed on disk"
~buttons:["Revert from File";
"Overwrite File";
"Disable Auto Revert"]
~default:0
~icon:(stock_to_widget warning_icon)
"Some unsaved buffers changed on disk"
)
with 1 -> do_revert ()
| 2 -> if self#save f then !flash_info "Overwritten" else
!flash_info "Could not overwrite file"
| _ ->
prerr_endline "Auto revert set to false";
!current.global_auto_revert <- false;
disconnect_revert_timer ()
else do_revert ()
end
| None -> ()
method save f =
if try_export f (input_buffer#get_text ()) then begin
filename <- Some f;
input_buffer#set_modified false;
stats <- my_stat f;
(match self#auto_save_name with
| None -> ()
| Some fn -> try Sys.remove fn with _ -> ());
true
end
else false
method private auto_save_name =
match filename with
| None -> None
| Some f ->
let dir = Filename.dirname f in
let base = (fst !current.auto_save_name) ^
(Filename.basename f) ^
(snd !current.auto_save_name)
in Some (Filename.concat dir base)
method private need_auto_save =
input_buffer#modified &&
last_modification_time > last_auto_save_time
method auto_save =
if self#need_auto_save then begin
match self#auto_save_name with
| None -> ()
| Some fn ->
try
last_auto_save_time <- Unix.time();
prerr_endline ("Autosave time : "^(string_of_float (Unix.time())));
if try_export fn (input_buffer#get_text ()) then begin
!flash_info ~delay:1000 "Autosaved"
end
else !flash_info "Autosave failed"
with _ -> !flash_info "Autosave error"
end
method save_as f =
if Sys.file_exists f then
match (GToolbox.question_box ~title:"File exists on disk"
~buttons:["Overwrite";
"Cancel";]
~default:1
~icon:
(let img = GMisc.image () in
img#set_stock warning_icon;
img#set_icon_size dialog_size;
img#coerce)
("File "^f^"already exists")
)
with 1 -> self#save f
| _ -> false
else self#save f
method set_read_only b = read_only<-b
method read_only = read_only
method is_active = is_active
method insert_message s =
message_buffer#insert s;
message_view#misc#draw None
method set_message s =
message_buffer#set_text s;
message_view#misc#draw None
method clear_message = message_buffer#set_text ""
val mutable last_index = true
val last_array = [|"";""|]
method get_start_of_input = input_buffer#get_iter_at_mark (`NAME "start_of_input")
method get_insert = get_insert input_buffer
method recenter_insert =
(* BUG : to investigate further:
FIXED : Never call GMain.* in thread !
PLUS : GTK BUG ??? Cannot be called from a thread...
ADDITION: using sync instead of async causes deadlock...*)
ignore (GtkThread.async (
input_view#scroll_to_mark
~use_align:false
~yalign:0.75
~within_margin:0.25)
`INSERT)
method indent_current_line =
let get_nb_space it =
let it = it#copy in
let nb_sep = ref 0 in
let continue = ref true in
while !continue do
if it#char = space then begin
incr nb_sep;
if not it#nocopy#forward_char then continue := false;
end else continue := false
done;
!nb_sep
in
let previous_line = self#get_insert in
if previous_line#nocopy#backward_line then begin
let previous_line_spaces = get_nb_space previous_line in
let current_line_start = self#get_insert#set_line_offset 0 in
let current_line_spaces = get_nb_space current_line_start in
if input_buffer#delete_interactive
~start:current_line_start
~stop:(current_line_start#forward_chars current_line_spaces)
()
then
let current_line_start = self#get_insert#set_line_offset 0 in
input_buffer#insert
~iter:current_line_start
(String.make previous_line_spaces ' ')
end
method show_goals =
try
proof_view#buffer#set_text "";
let s = Coq.get_current_goals () in
match s with
| [] -> proof_buffer#insert (Coq.print_no_goal ())
| (hyps,concl)::r ->
let goal_nb = List.length s in
proof_buffer#insert (Printf.sprintf "%d subgoal%s\n"
goal_nb
(if goal_nb<=1 then "" else "s"));
List.iter
(fun ((_,_,_,(s,_)) as hyp) ->
proof_buffer#insert (s^"\n"))
hyps;
proof_buffer#insert (String.make 38 '_' ^ "(1/"^
(string_of_int goal_nb)^
")\n")
;
let _,_,_,sconcl = concl in
proof_buffer#insert sconcl;
proof_buffer#insert "\n";
let my_mark = `NAME "end_of_conclusion" in
proof_buffer#move_mark
~where:((proof_buffer#get_iter_at_mark `INSERT)) my_mark;
proof_buffer#insert "\n\n";
let i = ref 1 in
List.iter
(function (_,(_,_,_,concl)) ->
incr i;
proof_buffer#insert (String.make 38 '_' ^"("^
(string_of_int !i)^
"/"^
(string_of_int goal_nb)^
")\n");
proof_buffer#insert concl;
proof_buffer#insert "\n\n";
)
r;
ignore (proof_view#scroll_to_mark my_mark)
with e -> prerr_endline ("Don't worry be happy despite: "^Printexc.to_string e)
val mutable full_goal_done = true
method show_goals_full =
if not full_goal_done then
begin
try
proof_view#buffer#set_text "";
let s = Coq.get_current_goals () in
let last_shown_area = proof_buffer#create_tag [`BACKGROUND "light green"]
in
match s with
| [] -> proof_buffer#insert (Coq.print_no_goal ())
| (hyps,concl)::r ->
let goal_nb = List.length s in
proof_buffer#insert (Printf.sprintf "%d subgoal%s\n"
goal_nb
(if goal_nb<=1 then "" else "s"));
let coq_menu commands =
let tag = proof_buffer#create_tag []
in
ignore
(tag#connect#event ~callback:
(fun ~origin ev it ->
begin match GdkEvent.get_type ev with
| `BUTTON_PRESS ->
let ev = (GdkEvent.Button.cast ev) in
if (GdkEvent.Button.button ev) = 3
then begin
let loc_menu = GMenu.menu () in
let factory = new GMenu.factory loc_menu in
let add_coq_command (cp,ip) =
ignore
(factory#add_item cp
~callback:
(fun () -> ignore
(self#insert_this_phrase_on_success
true
true
false
(ip^"\n")
(ip^"\n"))
)
)
in
List.iter add_coq_command commands;
loc_menu#popup
~button:3
~time:(GdkEvent.Button.time ev);
end
| `MOTION_NOTIFY ->
proof_buffer#remove_tag
~start:proof_buffer#start_iter
~stop:proof_buffer#end_iter
last_shown_area;
prerr_endline "Before find_tag_limits";
let s,e = find_tag_limits tag
(new GText.iter it)
in
prerr_endline "After find_tag_limits";
proof_buffer#apply_tag
~start:s
~stop:e
last_shown_area;
prerr_endline "Applied tag";
()
| _ -> ()
end;false
)
);
tag
in
List.iter
(fun ((_,_,_,(s,_)) as hyp) ->
let tag = coq_menu (hyp_menu hyp) in
proof_buffer#insert ~tags:[tag] (s^"\n"))
hyps;
proof_buffer#insert
(String.make 38 '_' ^"(1/"^
(string_of_int goal_nb)^
")\n")
;
let tag = coq_menu (concl_menu concl) in
let _,_,_,sconcl = concl in
proof_buffer#insert ~tags:[tag] sconcl;
proof_buffer#insert "\n";
let my_mark = `NAME "end_of_conclusion" in
proof_buffer#move_mark
~where:((proof_buffer#get_iter_at_mark `INSERT)) my_mark;
proof_buffer#insert "\n\n";
let i = ref 1 in
List.iter
(function (_,(_,_,_,concl)) ->
incr i;
proof_buffer#insert
(String.make 38 '_' ^"("^
(string_of_int !i)^
"/"^
(string_of_int goal_nb)^
")\n");
proof_buffer#insert concl;
proof_buffer#insert "\n\n";
)
r;
ignore (proof_view#scroll_to_mark my_mark) ;
full_goal_done <- true;
with e -> prerr_endline (Printexc.to_string e)
end
method send_to_coq replace phrase show_output show_error localize =
try
full_goal_done <- false;
prerr_endline "Send_to_coq starting now";
if replace then begin
let r,info = Coq.interp_and_replace ("Info " ^ phrase) in
let msg = read_stdout () in
self#insert_message (if show_output then msg else "");
Some r
end else begin
let r = Some (Coq.interp phrase) in
let msg = read_stdout () in
self#insert_message (if show_output then msg else "");
r
end
with e ->
(if show_error then
let (s,loc) = Coq.process_exn e in
assert (Glib.Utf8.validate s);
self#set_message s;
message_view#misc#draw None;
if localize then
(match loc with
| None -> ()
| Some (start,stop) ->
let convert_pos = byte_offset_to_char_offset phrase in
let start = convert_pos start in
let stop = convert_pos stop in
let i = self#get_start_of_input in
let starti = i#forward_chars start in
let stopi = i#forward_chars stop in
input_buffer#apply_tag_by_name "error"
~start:starti
~stop:stopi;
input_buffer#place_cursor starti;
));
None
method find_phrase_starting_at (start:GText.iter) =
prerr_endline "find_phrase_starting_at starting now";
let trash_bytes = ref "" in
let end_iter = start#copy in
let lexbuf_function s count =
let i = ref 0 in
let n_trash = String.length !trash_bytes in
String.blit !trash_bytes 0 s 0 n_trash;
i := n_trash;
try
while !i <= count - 1 do
let c = end_iter#char in
if c = 0 then raise (Stop !i);
let c' = Glib.Utf8.from_unichar c in
let n = String.length c' in
if (n<=0) then exit (-2);
if n > count - !i then
begin
let ri = count - !i in
String.blit c' 0 s !i ri;
trash_bytes := String.sub c' ri (n-ri);
i := count ;
end else begin
String.blit c' 0 s !i n;
i:= !i + n
end;
if not end_iter#nocopy#forward_char then
raise (Stop !i)
done;
count
with Stop x ->
x
in
try
trash_bytes := "";
let phrase = Find_phrase.get (Lexing.from_function lexbuf_function)
in
end_iter#nocopy#set_offset (start#offset + !Find_phrase.length);
Some (start,end_iter)
with
| Find_phrase.EOF s ->
(* Phrase is at the end of the buffer*)
let si = start#offset in
let ei = si + !Find_phrase.length in
end_iter#nocopy#set_offset (ei - 1);
input_buffer#insert ~iter:end_iter "\n";
Some (input_buffer#get_iter (`OFFSET si),
input_buffer#get_iter (`OFFSET ei))
| _ -> None
method complete_at_offset (offset:int) =
prerr_endline ("Completion at offset : " ^ string_of_int offset);
let it () = input_buffer#get_iter (`OFFSET offset) in
let iit = it () in
let start = find_word_start iit in
if ends_word iit then
let w = input_buffer#get_text
~start
~stop:iit
()
in
if String.length w <> 0 then begin
prerr_endline ("Completion of prefix : '" ^ w^"'");
match complete input_buffer w start#offset with
| None -> false
| Some (ss,start,stop) ->
let completion = input_buffer#get_text ~start ~stop () in
ignore (input_buffer#delete_selection ());
ignore (input_buffer#insert_interactive completion);
input_buffer#move_mark `SEL_BOUND (it())#backward_char;
true
end else false
else false
method process_next_phrase display_goals do_highlight =
begin
try
self#clear_message;
prerr_endline "process_next_phrase starting now";
if do_highlight then begin
!push_info "Coq is computing";
input_view#set_editable false;
end;
begin match (self#find_phrase_starting_at self#get_start_of_input)
with
| None ->
if do_highlight then begin
input_view#set_editable true;
!pop_info ();
end; false
| Some(start,stop) ->
prerr_endline "process_next_phrase : to_process highlight";
let b = input_buffer in
if do_highlight then begin
input_buffer#apply_tag_by_name ~start ~stop "to_process";
prerr_endline "process_next_phrase : to_process applied";
end;
prerr_endline "process_next_phrase : getting phrase";
let phrase = start#get_slice ~stop in
let r =
match self#send_to_coq false phrase true true true with
| Some ast ->
begin
b#move_mark ~where:stop (`NAME "start_of_input");
b#apply_tag_by_name "processed" ~start ~stop;
if (self#get_insert#compare) stop <= 0 then
begin
b#place_cursor stop;
self#recenter_insert
end;
let start_of_phrase_mark = `MARK (b#create_mark start) in
let end_of_phrase_mark = `MARK (b#create_mark stop) in
push_phrase
start_of_phrase_mark
end_of_phrase_mark ast;
if display_goals then self#show_goals;
true
end
| None -> false
in
if do_highlight then begin
b#remove_tag_by_name ~start ~stop "to_process" ;
input_view#set_editable true;
!pop_info ();
end;
r;
end
with e -> raise e
end
method insert_this_phrase_on_success
show_output show_msg localize coqphrase insertphrase =
match self#send_to_coq false coqphrase show_output show_msg localize with
| Some ast ->
begin
let stop = self#get_start_of_input in
if stop#starts_line then
input_buffer#insert ~iter:stop insertphrase
else input_buffer#insert ~iter:stop ("\n"^insertphrase);
let start = self#get_start_of_input in
input_buffer#move_mark ~where:stop (`NAME "start_of_input");
input_buffer#apply_tag_by_name "processed" ~start ~stop;
if (self#get_insert#compare) stop <= 0 then
input_buffer#place_cursor stop;
let start_of_phrase_mark = `MARK (input_buffer#create_mark start)
in
let end_of_phrase_mark = `MARK (input_buffer#create_mark stop) in
push_phrase start_of_phrase_mark end_of_phrase_mark ast;
self#show_goals;
(*Auto insert save on success...
try (match Coq.get_current_goals () with
| [] ->
(match self#send_to_coq "Save.\n" true true true with
| Some ast ->
begin
let stop = self#get_start_of_input in
if stop#starts_line then
input_buffer#insert ~iter:stop "Save.\n"
else input_buffer#insert ~iter:stop "\nSave.\n";
let start = self#get_start_of_input in
input_buffer#move_mark ~where:stop (`NAME "start_of_input");
input_buffer#apply_tag_by_name "processed" ~start ~stop;
if (self#get_insert#compare) stop <= 0 then
input_buffer#place_cursor stop;
let start_of_phrase_mark = `MARK (input_buffer#create_mark start)
in
let end_of_phrase_mark = `MARK (input_buffer#create_mark stop) in
push_phrase start_of_phrase_mark end_of_phrase_mark ast
end
| None -> ())
| _ -> ())
with _ -> ()*)
true
end
| None -> self#insert_message ("Unsuccesfully tried: "^coqphrase);
false
method process_until_iter_or_error stop =
let stop' = `OFFSET stop#offset in
let start = self#get_start_of_input#copy in
let start' = `OFFSET start#offset in
input_buffer#apply_tag_by_name
~start
~stop
"to_process";
input_view#set_editable false;
!push_info "Coq is computing";
process_pending ();
(try
while ((stop#compare self#get_start_of_input>=0)
&& (self#process_next_phrase false false))
do Util.check_for_interrupt () done
with Sys.Break ->
prerr_endline "Interrupted during process_until_iter_or_error");
self#show_goals;
(* Start and stop might be invalid if an eol was added at eof *)
let start = input_buffer#get_iter start' in
let stop = input_buffer#get_iter stop' in
input_buffer#remove_tag_by_name ~start ~stop "to_process" ;
input_view#set_editable true;
!pop_info()
method process_until_end_or_error =
self#process_until_iter_or_error input_buffer#end_iter
method process_until_insert_or_error =
let stop = self#get_insert in
self#process_until_iter_or_error stop
method reset_initial =
Stack.iter
(function inf ->
let start = input_buffer#get_iter_at_mark inf.start in
let stop = input_buffer#get_iter_at_mark inf.stop in
input_buffer#move_mark ~where:start (`NAME "start_of_input");
input_buffer#remove_tag_by_name "processed" ~start ~stop;
input_buffer#delete_mark inf.start;
input_buffer#delete_mark inf.stop;
)
processed_stack;
Stack.clear processed_stack;
self#clear_message;
Coq.reset_initial ()
(* backtrack Coq to the phrase preceding iterator [i] *)
method backtrack_to_no_lock i =
prerr_endline "Backtracking_to iter starts now.";
(* re-synchronize Coq to the current state of the stack *)
let rec synchro () =
if is_empty () then
Coq.reset_initial ()
else begin
let t = pop () in
begin match t.reset_info with
| Reset (id, ({contents=true} as v)) -> v:=false;
(match snd t.ast with
| VernacBeginSection _ | VernacDefineModule _
| VernacDeclareModule _ | VernacDeclareModuleType _
| VernacEndSegment _
-> reset_to_mod id
| _ -> reset_to id)
| _ -> synchro ()
end;
interp_last t.ast;
repush_phrase t
end
in
let add_undo t = match t with | Some n -> Some (succ n) | None -> None
in
(* pop Coq commands until we reach iterator [i] *)
let rec pop_commands done_smthg undos =
if is_empty () then
done_smthg, undos
else
let t = top () in
if i#compare (input_buffer#get_iter_at_mark t.stop) < 0 then begin
ignore (pop ());
let undos = if is_tactic (snd t.ast) then add_undo undos else None in
pop_commands true undos
end else
done_smthg, undos
in
let done_smthg, undos = pop_commands false (Some 0) in
prerr_endline "Popped commands";
if done_smthg then
begin
try
(match undos with
| None -> synchro ()
| Some n -> try Pfedit.undo n with _ -> synchro ());
let start = if is_empty () then input_buffer#start_iter
else input_buffer#get_iter_at_mark (top ()).stop
in
prerr_endline "Removing (long) processed tag...";
input_buffer#remove_tag_by_name
~start
~stop:self#get_start_of_input
"processed";
prerr_endline "Moving (long) start_of_input...";
input_buffer#move_mark ~where:start (`NAME "start_of_input");
self#show_goals;
clear_stdout ();
self#clear_message;
with _ ->
!push_info "WARNING: undo failed badly -> Coq might be in an inconsistent state.
Please restart and report NOW.";
end
else prerr_endline "backtrack_to : discarded (...)"
method backtrack_to i =
if Mutex.try_lock coq_may_stop then
(!push_info "Undoing...";self#backtrack_to_no_lock i ; Mutex.unlock coq_may_stop;
!pop_info ())
else prerr_endline "backtrack_to : discarded (lock is busy)"
method backtrack_to_insert =
self#backtrack_to self#get_insert
method undo_last_step =
if Mutex.try_lock coq_may_stop then
(!push_info "Undoing last step...";
(try
let last_command = top () in
let start = input_buffer#get_iter_at_mark last_command.start in
let update_input () =
prerr_endline "Removing processed tag...";
input_buffer#remove_tag_by_name
~start
~stop:(input_buffer#get_iter_at_mark last_command.stop)
"processed";
prerr_endline "Moving start_of_input";
input_buffer#move_mark
~where:start
(`NAME "start_of_input");
input_buffer#place_cursor start;
self#recenter_insert;
self#show_goals;
self#clear_message
in
begin match last_command with
| {ast=_, (VernacSolve _ | VernacTime (VernacSolve _))} ->
begin
try Pfedit.undo 1; ignore (pop ()); update_input ()
with _ -> self#backtrack_to_no_lock start
end
| {ast=_,t;reset_info=Reset (id, {contents=true})} ->
ignore (pop ());
(match t with
| VernacBeginSection _ | VernacDefineModule _
| VernacDeclareModule _ | VernacDeclareModuleType _
| VernacEndSegment _
-> reset_to_mod id
| _ -> reset_to id);
update_input ()
| { ast = _, ( VernacStartTheoremProof _
| VernacGoal _
| VernacDeclareTacticDefinition _
| VernacDefinition (_,_,ProveBody _,_));
reset_info=Reset(id,{contents=false})} ->
ignore (pop ());
(try
Pfedit.delete_current_proof ()
with e ->
begin
prerr_endline "WARNING : found a closed environment";
raise e
end);
update_input ()
| { ast = (_, a) } when is_state_preserving a ->
ignore (pop ());
update_input ()
| _ ->
self#backtrack_to_no_lock start
end;
with
| Size 0 -> (* !flash_info "Nothing to Undo"*)()
);
!pop_info ();
Mutex.unlock coq_may_stop)
else prerr_endline "undo_last_step discarded"
method blaster () =
ignore (Thread.create
(fun () ->
prerr_endline "Blaster called";
let c = Blaster_window.present_blaster_window () in
if Mutex.try_lock c#lock then begin
c#clear ();
let current_gls = try get_current_goals () with _ -> [] in
let gls_nb = List.length current_gls in
let set_goal i (s,t) =
let gnb = string_of_int i in
let s = gnb ^":"^s in
let t' = gnb ^": Progress "^t in
let t'' = gnb ^": "^t in
c#set
("Goal "^gnb)
s
(fun () -> try_interptac t')
(fun () -> self#insert_command t'' t'')
in
let set_current_goal (s,t) =
c#set
"Goal 1"
s
(fun () -> try_interptac ("Progress "^t))
(fun () -> self#insert_command t t)
in
begin match current_gls with
| [] -> ()
| (hyp_l,current_gl)::r ->
List.iter set_current_goal (concl_menu current_gl);
List.iter
(fun hyp ->
List.iter set_current_goal (hyp_menu hyp))
hyp_l;
let i = ref 2 in
List.iter
(fun (hyp_l,gl) ->
List.iter (set_goal !i) (concl_menu gl);
incr i)
r
end;
let _ = c#blaster () in
Mutex.unlock c#lock
end else prerr_endline "Blaster discarded")
())
method insert_command cp ip =
self#clear_message;
ignore (self#insert_this_phrase_on_success true false false cp ip)
method insert_commands l =
self#clear_message;
ignore (List.exists
(fun (cp,ip) ->
self#insert_this_phrase_on_success true false false
(cp^"\n") (ip^"\n")) l)
method active_keypress_handler k =
let state = GdkEvent.Key.state k in
begin
match state with
| l when List.mem `MOD1 l ->
let k = GdkEvent.Key.keyval k in
if GdkKeysyms._Return=k
then ignore(
if (input_buffer#insert_interactive "\n") then
begin
let i= self#get_insert#backward_word_start in
prerr_endline "active_kp_hf: Placing cursor";
self#process_until_iter_or_error i
end);
true
| l when List.mem `CONTROL l ->
let k = GdkEvent.Key.keyval k in
if GdkKeysyms._Break=k
then break ();
false
| l ->
if GdkEvent.Key.keyval k = GdkKeysyms._Tab then begin
prerr_endline "active_kp_handler for Tab";
self#indent_current_line;
true
end else false
end
method disconnected_keypress_handler k =
match GdkEvent.Key.state k with
| l when List.mem `CONTROL l ->
let k = GdkEvent.Key.keyval k in
if GdkKeysyms._c=k
then break ();
false
| l -> false
val mutable deact_id = None
val mutable act_id = None
method deactivate () =
is_active <- false;
(match act_id with None -> ()
| Some id ->
reset_initial ();
input_view#misc#disconnect id;
prerr_endline "DISCONNECTED old active : ";
print_id id;
);
deact_id <- Some
(input_view#event#connect#key_press self#disconnected_keypress_handler);
prerr_endline "CONNECTED inactive : ";
print_id (out_some deact_id)
method activate () =
is_active <- true;
(match deact_id with None -> ()
| Some id -> input_view#misc#disconnect id;
prerr_endline "DISCONNECTED old inactive : ";
print_id id
);
act_id <- Some
(input_view#event#connect#key_press self#active_keypress_handler);
prerr_endline "CONNECTED active : ";
print_id (out_some act_id);
let dir = (match
(out_some ((Vector.get input_views index).analyzed_view))
#filename
with
| None -> ()
| Some f ->
if not (is_in_coq_path f) then
begin
let dir = Filename.dirname f in
ignore (Coq.interp
(Printf.sprintf "Add LoadPath \"%s\". " dir))
end)
in ()
method electric_handler =
input_buffer#connect#insert_text ~callback:
(fun it x ->
begin try
if last_index then begin
last_array.(0)<-x;
if (last_array.(1) ^ last_array.(0) = ".\n") then raise Found
end else begin
last_array.(1)<-x;
if (last_array.(0) ^ last_array.(1) = ".\n") then raise Found
end
with Found ->
begin
ignore (self#process_next_phrase true true)
end;
end;
last_index <- not last_index;)
method private electric_paren tag =
let oparen_code = Glib.Utf8.to_unichar "(" (ref 0) in
let cparen_code = Glib.Utf8.to_unichar ")" (ref 0) in
ignore (input_buffer#connect#insert_text ~callback:
(fun it x ->
input_buffer#remove_tag
~start:input_buffer#start_iter
~stop:input_buffer#end_iter
tag;
if x = "" then () else
match x.[String.length x - 1] with
| ')' ->
let hit = self#get_insert in
let count = ref 0 in
if hit#nocopy#backward_find_char
(fun c ->
if c = oparen_code && !count = 0 then true
else if c = cparen_code then
(incr count;false)
else if c = oparen_code then
(decr count;false)
else false
)
then
begin
prerr_endline "Found matching parenthesis";
input_buffer#apply_tag tag ~start:hit ~stop:hit#forward_char
end
else ()
| _ -> ())
)
method help_for_keyword () = browse_keyword (get_current_word ())
initializer
ignore (message_buffer#connect#insert_text
~callback:(fun it s -> ignore
(message_view#scroll_to_mark
~use_align:false
~within_margin:0.49
`INSERT)));
ignore (input_buffer#connect#insert_text
~callback:(fun it s ->
if (it#compare self#get_start_of_input)<0
then GtkSignal.stop_emit ();
if String.length s > 1 then
(prerr_endline "insert_text: Placing cursor";input_buffer#place_cursor it)));
ignore (input_buffer#connect#after#apply_tag
~callback:(fun tag ~start ~stop ->
if (start#compare self#get_start_of_input)>=0
then
input_buffer#remove_tag_by_name
~start
~stop
"processed"
)
);
ignore (input_buffer#connect#after#insert_text
~callback:(fun it s ->
if auto_complete_on &&
String.length s = 1 && s <> " " && s <> "\n"
then
let v = out_some (get_current_view ()).analyzed_view
in
let has_completed =
v#complete_at_offset
((v#view#buffer#get_iter `SEL_BOUND)#offset)
in
if has_completed then
input_buffer#move_mark `SEL_BOUND (input_buffer#get_iter `SEL_BOUND)#forward_char;
)
);
ignore (input_buffer#connect#modified_changed
~callback:
(fun () ->
if input_buffer#modified then
set_tab_image index
(match (out_some (current_all.analyzed_view))#filename with
| None -> saveas_icon
| Some _ -> save_icon
)
else set_tab_image index yes_icon;
));
ignore (input_buffer#connect#changed
~callback:(fun () ->
last_modification_time <- Unix.time ();
let r = input_view#visible_rect in
let stop =
input_view#get_iter_at_location
~x:(Gdk.Rectangle.x r + Gdk.Rectangle.width r)
~y:(Gdk.Rectangle.y r + Gdk.Rectangle.height r)
in
input_buffer#remove_tag_by_name
~start:self#get_start_of_input
~stop
"error";
Highlight.highlight_around_current_line
input_buffer
)
);
ignore (input_buffer#add_selection_clipboard (cb()));
let paren_highlight_tag = input_buffer#create_tag ~name:"paren" [`BACKGROUND "purple"] in
self#electric_paren paren_highlight_tag;
ignore (input_buffer#connect#after#mark_set
~callback:(fun it (m:Gtk.text_mark) ->
!set_location
(Printf.sprintf
"Line: %5d Char: %3d" (self#get_insert#line + 1)
(self#get_insert#line_offset + 1));
match GtkText.Mark.get_name m with
| Some "insert" ->
input_buffer#remove_tag
~start:input_buffer#start_iter
~stop:input_buffer#end_iter
paren_highlight_tag;
| Some s ->
prerr_endline (s^" moved")
| None -> () )
);
ignore (input_buffer#connect#insert_text
(fun it s ->
prerr_endline "Should recenter ?";
if String.contains s '\n' then begin
prerr_endline "Should recenter : yes";
self#recenter_insert
end))
end
let create_input_tab filename =
let b = GText.buffer () in
let tablabel = GMisc.label () in
let v_box = GPack.hbox ~homogeneous:false () in
let image = GMisc.image ~packing:v_box#pack () in
let label = GMisc.label ~text:filename ~packing:v_box#pack () in
let fr1 = GBin.frame ~shadow_type:`ETCHED_OUT
~packing:((notebook ())#append_page
~tab_label:v_box#coerce) ()
in
let sw1 = GBin.scrolled_window
~vpolicy:`AUTOMATIC
~hpolicy:`AUTOMATIC
~packing:fr1#add ()
in
let tv1 = Undo.undoable_view ~buffer:b ~packing:(sw1#add) () in
prerr_endline ("Language: "^ b#start_iter#language);
tv1#misc#set_name "ScriptWindow";
let _ = tv1#set_editable true in
let _ = tv1#set_wrap_mode `NONE in
b#place_cursor ~where:(b#start_iter);
ignore (tv1#event#connect#button_press ~callback:
(fun ev -> GdkEvent.Button.button ev = 3));
(* ignore (tv1#event#connect#button_press ~callback:
(fun ev ->
if (GdkEvent.Button.button ev=2) then
(try
prerr_endline "Paste invoked";
GtkSignal.emit_unit
(get_current_view()).view#as_view
GtkText.View.Signals.paste_clipboard;
true
with _ -> false)
else false
));*)
tv1#misc#grab_focus ();
ignore (tv1#buffer#create_mark
~name:"start_of_input"
tv1#buffer#start_iter);
ignore (tv1#buffer#create_tag
~name:"kwd"
[`FOREGROUND "blue"]);
ignore (tv1#buffer#create_tag
~name:"decl"
[`FOREGROUND "orange red"]);
ignore (tv1#buffer#create_tag
~name:"comment"
[`FOREGROUND "brown"]);
ignore (tv1#buffer#create_tag
~name:"reserved"
[`FOREGROUND "dark red"]);
ignore (tv1#buffer#create_tag
~name:"error"
[`UNDERLINE `DOUBLE ; `FOREGROUND "red"]);
ignore (tv1#buffer#create_tag
~name:"to_process"
[`BACKGROUND "light blue" ;`EDITABLE false]);
ignore (tv1#buffer#create_tag
~name:"processed"
[`BACKGROUND "light green" ;`EDITABLE false]);
tv1
let main files =
(* Statup preferences *)
load_pref ();
(* Main window *)
let w = GWindow.window
~wm_class:"CoqIde" ~wm_name:"CoqIde"
~allow_grow:true ~allow_shrink:true
~width:!current.window_width ~height:!current.window_height
~title:"CoqIde" ()
in
let vbox = GPack.vbox ~homogeneous:false ~packing:w#add () in
(* Menu bar *)
let menubar = GMenu.menu_bar ~packing:vbox#pack () in
(* Tearable Toolbar *)
let handle = GBin.handle_box
~show:!current.show_toolbar
~handle_position:`LEFT
~snap_edge:`LEFT
~packing:vbox#pack
()
in
let toolbar = GButton.toolbar
~orientation:`HORIZONTAL
~style:`BOTH
~tooltips:true
~packing:handle#add
()
in
show_toolbar :=
(fun b -> if b then handle#misc#show () else handle#misc#hide ());
let factory = new GMenu.factory ~accel_path:"<CoqIde MenuBar>/" menubar in
let accel_group = factory#accel_group in
(* File Menu *)
let file_menu = factory#add_submenu "_File" in
let file_factory = new GMenu.factory ~accel_path:"<CoqIde MenuBar>/File/" file_menu ~accel_group in
(* File/Load Menu *)
let load f =
try
prerr_endline "Loading file starts";
Vector.find_or_fail
(function
| {analyzed_view=Some av} ->
(match av#filename with
| None -> false
| Some fn -> f=fn)
| _ -> false)
!input_views;
prerr_endline "Loading: must open";
let b = Buffer.create 1024 in
prerr_endline "Loading: get raw content";
with_file f ~f:(input_channel b);
prerr_endline "Loading: convert content";
let s = do_convert (Buffer.contents b) in
prerr_endline "Loading: create view";
let view = create_input_tab (Glib.Convert.filename_to_utf8
(Filename.basename f))
in
prerr_endline "Loading: change font";
view#misc#modify_font !current.text_font;
prerr_endline "Loading: adding view";
let index = add_input_view {view = view;
analyzed_view = None;
}
in
let av = (new analyzed_view index) in
prerr_endline "Loading: register view";
(get_input_view index).analyzed_view <- Some av;
prerr_endline "Loading: set filename";
av#set_filename
(Some (if Filename.is_relative f then
Filename.concat initial_cwd f
else f
));
prerr_endline "Loading: stats";
av#update_stats;
let input_buffer = view#buffer in
prerr_endline "Loading: fill buffer";
input_buffer#set_text s;
input_buffer#place_cursor input_buffer#start_iter;
prerr_endline ("Loading: switch to view "^ string_of_int index);
set_current_view index;
prerr_endline "Loading: highlight";
Highlight.highlight_all input_buffer;
input_buffer#set_modified false;
prerr_endline "Loading: clear undo";
av#view#clear_undo;
prerr_endline "Loading: success"
with
| Vector.Found i -> set_current_view i
| e -> !flash_info ("Load failed: "^(Printexc.to_string e))
in
let load_m = file_factory#add_item "_Open/Create"
~key:GdkKeysyms._O in
let load_f () =
match select_file ~title:"Load file" () with
| None -> ()
| (Some f) as fn -> load f
in
ignore (load_m#connect#activate (load_f));
(* File/Save Menu *)
let save_m = file_factory#add_item "_Save"
~key:GdkKeysyms._S in
let save_f () =
let current = get_current_view () in
try
(match (out_some current.analyzed_view)#filename with
| None ->
begin match GToolbox.select_file ~title:"Save file" ()
with
| None -> ()
| Some f ->
if (out_some current.analyzed_view)#save_as f then begin
set_current_tab_label (Filename.basename f);
!flash_info "Saved"
end
else !flash_info "Save Failed"
end
| Some f ->
if (out_some current.analyzed_view)#save f then
!flash_info "Saved"
else !flash_info "Save Failed"
)
with
| e -> !flash_info "Save failed"
in
ignore (save_m#connect#activate save_f);
(* File/Save As Menu *)
let saveas_m = file_factory#add_item "S_ave as"
in
let saveas_f () =
let current = get_current_view () in
try (match (out_some current.analyzed_view)#filename with
| None ->
begin match GToolbox.select_file ~title:"Save file as" ()
with
| None -> ()
| Some f ->
if (out_some current.analyzed_view)#save_as f then begin
set_current_tab_label (Filename.basename f);
!flash_info "Saved"
end
else !flash_info "Save Failed"
end
| Some f ->
begin match GToolbox.select_file
~dir:(ref (Filename.dirname f))
~filename:(Filename.basename f)
~title:"Save file as" ()
with
| None -> ()
| Some f ->
if (out_some current.analyzed_view)#save_as f then begin
set_current_tab_label (Filename.basename f);
!flash_info "Saved"
end else !flash_info "Save Failed"
end);
with e -> !flash_info "Save Failed"
in
ignore (saveas_m#connect#activate saveas_f);
(* File/Save All Menu *)
let saveall_m = file_factory#add_item "Sa_ve All" in
let saveall_f () =
Vector.iter
(function
| {view = view ; analyzed_view = Some av} as full ->
begin match av#filename with
| None -> ()
| Some f ->
ignore (av#save f)
end
| _ -> ()
) input_views
in
let has_something_to_save () =
Vector.exists
(function
| {view=view} -> view#buffer#modified
)
input_views
in
ignore (saveall_m#connect#activate saveall_f);
(* File/Revert Menu *)
let revert_m = file_factory#add_item "_Revert All Buffers" in
let revert_f () =
Vector.iter
(function
{view = view ; analyzed_view = Some av} as full ->
(try
match av#filename,av#stats with
| Some f,Some stats ->
let new_stats = Unix.stat f in
if new_stats.Unix.st_mtime > stats.Unix.st_mtime
then av#revert
| Some _, None -> av#revert
| _ -> ()
with _ -> av#revert)
| _ -> ()
) input_views
in
ignore (revert_m#connect#activate revert_f);
(* File/Close Menu *)
let close_m = file_factory#add_item "_Close Buffer" in
let close_f () =
let v = out_some !active_view in
let act = get_current_view_page () in
if v = act then !flash_info "Cannot close an active view"
else remove_current_view_page ()
in
ignore (close_m#connect#activate close_f);
(* File/Print Menu *)
let print_f () =
let v = get_current_view () in
let av = out_some v.analyzed_view in
match av#filename with
| None ->
!flash_info "Cannot print: this buffer has no name"
| Some f ->
let cmd =
"cd " ^ Filename.dirname f ^ "; " ^
!current.cmd_coqdoc ^ " -ps " ^ Filename.basename f ^
" | " ^ !current.cmd_print
in
let s,_ = run_command av#insert_message cmd in
!flash_info (cmd ^ if s = Unix.WEXITED 0 then " succeeded" else " failed")
in
let print_m = file_factory#add_item "_Print" ~callback:print_f in
(* File/Export to Menu *)
let export_f kind () =
let v = get_current_view () in
let av = out_some v.analyzed_view in
match av#filename with
| None ->
!flash_info "Cannot print: this buffer has no name"
| Some f ->
let basef = Filename.basename f in
let output =
let basef_we = try Filename.chop_extension basef with _ -> basef in
match kind with
| "latex" -> basef_we ^ ".tex"
| "dvi" | "ps" | "html" -> basef_we ^ "." ^ kind
| _ -> assert false
in
let cmd =
"cd " ^ Filename.dirname f ^ "; " ^
!current.cmd_coqdoc ^ " --" ^ kind ^ " -o " ^ output ^ " " ^ basef
in
let s,_ = run_command av#insert_message cmd in
!flash_info (cmd ^
if s = Unix.WEXITED 0
then " succeeded"
else " failed")
in
let file_export_m = file_factory#add_submenu "E_xport to" in
let file_export_factory = new GMenu.factory ~accel_path:"<CoqIde MenuBar>/Export/" file_export_m ~accel_group in
let export_html_m =
file_export_factory#add_item "_Html" ~callback:(export_f "html")
in
let export_latex_m =
file_export_factory#add_item "_LaTeX" ~callback:(export_f "latex")
in
let export_dvi_m =
file_export_factory#add_item "_Dvi" ~callback:(export_f "dvi")
in
let export_ps_m =
file_export_factory#add_item "_Ps" ~callback:(export_f "ps")
in
(* File/Rehighlight Menu *)
let rehighlight_m = file_factory#add_item "Reh_ighlight" ~key:GdkKeysyms._L in
ignore (rehighlight_m#connect#activate
(fun () ->
Highlight.highlight_all
(get_current_view()).view#buffer;
(out_some (get_current_view()).analyzed_view)#recenter_insert));
(* (* File/Refresh Menu *)
let refresh_m = file_factory#add_item "Restart all" ~key:GdkKeysyms._R in
refresh_m#misc#set_state `INSENSITIVE;
*)
(* File/Quit Menu *)
let quit_f () =
if has_something_to_save () then
match (GToolbox.question_box ~title:"Quit"
~buttons:["Save Named Buffers and Quit";
"Quit without Saving";
"Don't Quit"]
~default:0
~icon:
(let img = GMisc.image () in
img#set_stock warning_icon;
img#set_icon_size dialog_size;
img#coerce)
"There are unsaved buffers"
)
with 1 -> saveall_f () ; exit 0
| 2 -> exit 0
| _ -> ()
else exit 0
in
let quit_m = file_factory#add_item "_Quit" ~key:GdkKeysyms._Q
~callback:quit_f
in
ignore (w#event#connect#delete (fun _ -> quit_f (); true));
(* Edit Menu *)
let edit_menu = factory#add_submenu "_Edit" in
let edit_f = new GMenu.factory ~accel_path:"<CoqIde MenuBar>/Edit/" edit_menu ~accel_group in
ignore(edit_f#add_item "_Undo" ~key:GdkKeysyms._u ~callback:
(do_if_not_computing
(fun () ->
ignore ((out_some ((get_current_view()).analyzed_view))#
without_auto_complete
(fun () -> (get_current_view()).view#undo) ()))));
ignore(edit_f#add_item "_Clear Undo Stack" ~key:GdkKeysyms._exclam ~callback:
(fun () ->
ignore (get_current_view()).view#clear_undo));
ignore(edit_f#add_separator ());
ignore(edit_f#add_item "Copy" ~key:GdkKeysyms._C ~callback:
(fun () -> GtkSignal.emit_unit
(get_current_view()).view#as_view
GtkText.View.S.copy_clipboard));
ignore(edit_f#add_item "Cut" ~key:GdkKeysyms._X ~callback:
(do_if_not_computing
(fun () -> GtkSignal.emit_unit
(get_current_view()).view#as_view
GtkText.View.S.cut_clipboard)));
ignore(edit_f#add_item "Paste" ~key:GdkKeysyms._V ~callback:
(do_if_not_computing
(fun () ->
try GtkSignal.emit_unit
(get_current_view()).view#as_view
GtkText.View.S.paste_clipboard
with _ -> prerr_endline "EMIT PASTE FAILED")));
ignore (edit_f#add_separator ());
(*
let toggle_auto_complete_i =
edit_f#add_check_item "_Auto Completion"
~active:!current.auto_complete
~callback:
in
*)
auto_complete :=
(fun b -> match (get_current_view()).analyzed_view with
| Some av -> av#set_auto_complete b
| None -> ());
let read_only_i = edit_f#add_check_item "Expert" ~active:false
~key:GdkKeysyms._B
~callback:(fun b -> ()
)
in
read_only_i#misc#set_state `INSENSITIVE;
let search_if = edit_f#add_item "Search _forward"
~key:GdkKeysyms._greater
in
let search_ib = edit_f#add_item "Search _backward"
~key:GdkKeysyms._less
in
let complete_i = edit_f#add_item "_Complete"
~key:GdkKeysyms._comma
~callback:
(do_if_not_computing
(fun b ->
let v = out_some (get_current_view ()).analyzed_view
in v#complete_at_offset
((v#view#buffer#get_iter `SEL_BOUND)#offset)
))
in
complete_i#misc#set_state `INSENSITIVE;
to_do_on_page_switch :=
(fun i ->
prerr_endline ("Switching to tab "^(string_of_int i));
let v = out_some (get_input_view i).analyzed_view in
read_only_i#set_active v#read_only
)::!to_do_on_page_switch;
(* Navigation Menu *)
let navigation_menu = factory#add_submenu "_Navigation" in
let navigation_factory =
new GMenu.factory navigation_menu
~accel_path:"<CoqIde MenuBar>/Navigation/"
~accel_group
~accel_modi:!current.modifier_for_navigation
in
let do_or_activate f () =
let current = get_current_view () in
let analyzed_view = out_some current.analyzed_view in
if analyzed_view#is_active then
ignore (f analyzed_view)
else
begin
!flash_info "New proof started";
activate_input (notebook ())#current_page;
ignore (f analyzed_view)
end
in
let do_or_activate f =
do_if_not_computing (do_or_activate (fun av -> f av ; !pop_info();!push_info (Coq.current_status())))
in
let add_to_menu_toolbar text ~tooltip ~key ~callback icon =
ignore (navigation_factory#add_item text ~key ~callback);
ignore (toolbar#insert_button
~tooltip
~text:tooltip
~icon:(stock_to_widget ~size:`LARGE_TOOLBAR icon)
~callback
())
in
add_to_menu_toolbar "_Interrupt computations"
~tooltip:"Interrupt computations"
~key:GdkKeysyms._Break
~callback:break
`STOP
;
add_to_menu_toolbar
"_Forward"
~tooltip:"Forward"
~key:GdkKeysyms._Down
~callback:(do_or_activate (fun a -> a#process_next_phrase true true))
`GO_DOWN;
add_to_menu_toolbar "_Backward"
~tooltip:"Backward"
~key:GdkKeysyms._Up
~callback:(do_or_activate (fun a -> a#undo_last_step))
`GO_UP;
add_to_menu_toolbar
"_Forward to"
~tooltip:"Forward to"
~key:GdkKeysyms._Right
~callback:(do_or_activate (fun a -> a#process_until_insert_or_error))
`GOTO_LAST;
add_to_menu_toolbar
"_Backward to"
~tooltip:"Backward to"
~key:GdkKeysyms._Left
~callback:(do_or_activate (fun a-> a#backtrack_to_insert))
`GOTO_FIRST;
add_to_menu_toolbar
"_Start"
~tooltip:"Start"
~key:GdkKeysyms._Home
~callback:(do_or_activate (fun a -> a#reset_initial))
`GOTO_TOP;
add_to_menu_toolbar
"_End"
~tooltip:"End"
~key:GdkKeysyms._End
~callback:(do_or_activate (fun a -> a#process_until_end_or_error))
`GOTO_BOTTOM;
(* Tactics Menu *)
let tactics_menu = factory#add_submenu "_Try Tactics" in
let tactics_factory =
new GMenu.factory tactics_menu
~accel_path:"<CoqIde MenuBar>/Tactics/"
~accel_group
~accel_modi:!current.modifier_for_tactics
in
let do_if_active_raw f () =
let current = get_current_view () in
let analyzed_view = out_some current.analyzed_view in
if analyzed_view#is_active then ignore (f analyzed_view)
in
let do_if_active f = do_if_not_computing (do_if_active_raw f) in
ignore (tactics_factory#add_item "_Blaster"
~key:GdkKeysyms._b
~callback: (do_if_active_raw (fun a -> a#blaster ()))
(* Custom locking mechanism! *)
)
;
ignore (tactics_factory#add_item "_Auto"
~key:GdkKeysyms._a
~callback:(do_if_active (fun a -> a#insert_command "Progress Auto.\n" "Auto.\n"))
);
ignore (tactics_factory#add_item "_Auto with *"
~key:GdkKeysyms._asterisk
~callback:(do_if_active (fun a -> a#insert_command
"Progress Auto with *.\n"
"Auto with *.\n")));
ignore (tactics_factory#add_item "_EAuto"
~key:GdkKeysyms._e
~callback:(do_if_active (fun a -> a#insert_command
"Progress EAuto.\n"
"EAuto.\n"))
);
ignore (tactics_factory#add_item "_EAuto with *"
~key:GdkKeysyms._ampersand
~callback:(do_if_active (fun a -> a#insert_command
"Progress EAuto with *.\n"
"EAuto with *.\n"))
);
ignore (tactics_factory#add_item "_Intuition"
~key:GdkKeysyms._i
~callback:(do_if_active (fun a -> a#insert_command "Progress Intuition.\n" "Intuition.\n"))
);
ignore (tactics_factory#add_item "_Omega"
~key:GdkKeysyms._o
~callback:(do_if_active (fun a -> a#insert_command "Omega.\n" "Omega.\n"))
);
ignore (tactics_factory#add_item "_Simpl"
~key:GdkKeysyms._s
~callback:(do_if_active (fun a -> a#insert_command "Progress Simpl.\n" "Simpl.\n" ))
);
ignore (tactics_factory#add_item "_Tauto"
~key:GdkKeysyms._p
~callback:(do_if_active (fun a -> a#insert_command "Tauto.\n" "Tauto.\n" ))
);
ignore (tactics_factory#add_item "_Trivial"
~key:GdkKeysyms._v
~callback:(do_if_active( fun a -> a#insert_command "Progress Trivial.\n" "Trivial.\n" ))
);
ignore (toolbar#insert_button
~tooltip:"Proof Wizard"
~text:"Wizard"
~icon:(stock_to_widget ~size:`LARGE_TOOLBAR `DIALOG_INFO)
~callback:(do_if_active (fun a -> a#insert_commands
!current.automatic_tactics
))
());
ignore (tactics_factory#add_item "<Proof _Wizard>"
~key:GdkKeysyms._dollar
~callback:(do_if_active (fun a -> a#insert_commands
!current.automatic_tactics
))
);
(* Templates Menu *)
let templates_menu = factory#add_submenu "Te_mplates" in
let templates_factory = new GMenu.factory templates_menu
~accel_path:"<CoqIde MenuBar>/Templates/"
~accel_group
~accel_modi:!current.modifier_for_templates
in
let add_complex_template (menu_text, text, offset, len, key) =
(* Templates/Lemma *)
let callback = do_if_not_computing
(fun () ->
let {view = view } = get_current_view () in
if view#buffer#insert_interactive text then begin
let iter = view#buffer#get_iter_at_mark `INSERT in
ignore (iter#nocopy#backward_chars offset);
view#buffer#move_mark `INSERT iter;
ignore (iter#nocopy#backward_chars len);
view#buffer#move_mark `SEL_BOUND iter;
end)
in
ignore (templates_factory#add_item menu_text ~callback ?key)
in
add_complex_template
("_Lemma __", "Lemma new_lemma : .\nProof.\n\nSave.\n",
19, 9, Some GdkKeysyms._L);
add_complex_template
("_Theorem __", "Theorem new_theorem : .\nProof.\n\nSave.\n",
19, 11, Some GdkKeysyms._T);
add_complex_template
("_Definition __", "Definition ident := .\n",
6, 5, Some GdkKeysyms._D);
add_complex_template
("_Inductive __", "Inductive ident : :=\n | : .\n",
14, 5, Some GdkKeysyms._I);
add_complex_template("_Scheme __",
"Scheme new_scheme := Induction for _ Sort _
with _ := Induction for _ Sort _.\n",61,10, Some GdkKeysyms._S);
(* Template for Cases *)
let callback = (fun () ->
let w = get_current_word () in
try
let cases = Coq.make_cases w
in
let print c = function
| [x] -> fprintf c " | %s => _@\n" x
| x::l -> fprintf c " | (%s%a) => _@\n" x
(print_list (fun c s -> fprintf c " %s" s)) l
| [] -> assert false
in
let b = Buffer.create 1024 in
let fmt = formatter_of_buffer b in
fprintf fmt "@[Cases var of@\n%aend@]@."
(print_list print) cases;
let s = Buffer.contents b in
prerr_endline s;
let {view = view } = get_current_view () in
ignore (view#buffer#delete_selection ());
let m = view#buffer#create_mark
(view#buffer#get_iter `INSERT)
in
if view#buffer#insert_interactive s then
let i = view#buffer#get_iter (`MARK m) in
let _ = i#nocopy#forward_chars 9 in
view#buffer#place_cursor i;
view#buffer#move_mark ~where:(i#backward_chars 3)
`SEL_BOUND
with Not_found -> !flash_info "Not an inductive type"
)
in
ignore (templates_factory#add_item "Cases ..."
~key:GdkKeysyms._C
~callback
);
let add_simple_template (factory: GMenu.menu GMenu.factory)
(menu_text, text) =
ignore (factory#add_item menu_text
~callback:
(do_if_not_computing
(fun () -> let {view = view } = get_current_view () in
ignore (view#buffer#insert_interactive text))))
in
ignore (templates_factory#add_separator ());
List.iter (add_simple_template templates_factory)
[ "_Auto", "Auto ";
"_Auto with *", "Auto with * ";
"_EAuto", "EAuto ";
"_EAuto with *", "EAuto with * ";
"_Intuition", "Intuition ";
"_Omega", "Omega ";
"_Simpl", "Simpl ";
"_Tauto", "Tauto ";
"Tri_vial", "Trivial ";
];
ignore (templates_factory#add_separator ());
List.iter
(fun l ->
match l with
|[s] -> add_simple_template templates_factory ("_"^s, s^" ")
| [] -> ()
| s::r ->
let a = "_@..." in
a.[1] <- s.[0];
let f = templates_factory#add_submenu a in
let ff = new GMenu.factory f ~accel_group in
List.iter
(fun x ->
add_simple_template
ff
((String.sub x 0 1)^
"_"^
(String.sub x 1 (String.length x - 1)),
x^" "))
l
)
Coq_commands.commands;
(* Commands Menu *)
let commands_menu = factory#add_submenu "_Commands" in
let commands_factory = new GMenu.factory commands_menu ~accel_group
~accel_path:"<CoqIde MenuBar>/Commands"
~accel_modi:[]
in
(* Command/Show commands *)
let commands_show_m = commands_factory#add_item
"_Show Window"
~key:GdkKeysyms._F12
~callback:(Command_windows.command_window ())
#window#present
in
let _ =
commands_factory#add_item "_SearchAbout " ~key:GdkKeysyms._F2
~callback:(fun () -> let term = get_current_word () in
(Command_windows.command_window ())#new_command
~command:"SearchAbout"
~term
())
in
let _ =
commands_factory#add_item "_Check " ~key:GdkKeysyms._F3
~callback:(fun () -> let term = get_current_word () in
(Command_windows.command_window ())#new_command
~command:"Check"
~term
())
in
let _ =
commands_factory#add_item "_Print " ~key:GdkKeysyms._F4
~callback:(fun () -> let term = get_current_word () in
(Command_windows.command_window ())#new_command
~command:"Print"
~term
())
in
(* Externals *)
let externals_menu = factory#add_submenu "_Externals" in
let externals_factory = new GMenu.factory externals_menu
~accel_path:"<CoqIde MenuBar>/Externals/"
~accel_group in
(* Command/Compile Menu *)
let compile_f () =
let v = get_current_view () in
let av = out_some v.analyzed_view in
save_f ();
match av#filename with
| None ->
!flash_info "Active buffer has no name"
| Some f ->
let s,res = run_command
av#insert_message
(!current.cmd_coqc ^ " " ^ f)
in
if s = Unix.WEXITED 0 then
!flash_info (f ^ " successfully compiled")
else begin
!flash_info (f ^ " failed to compile");
activate_input (notebook ())#current_page;
av#process_until_end_or_error;
av#insert_message "Compilation output:\n";
av#insert_message res
end
in
let compile_m = externals_factory#add_item "_Compile" ~callback:compile_f in
(* Command/Make Menu *)
let make_f () =
let v = get_active_view () in
let av = out_some v.analyzed_view in
save_f ();
av#insert_message "Command output:\n";
let s,res = run_command av#insert_message !current.cmd_make in
!flash_info (!current.cmd_make ^ if s = Unix.WEXITED 0 then " succeeded" else " failed")
in
let make_m = externals_factory#add_item "_Make" ~callback:make_f in
(* Command/CoqMakefile Menu*)
let coq_makefile_f () =
let v = get_active_view () in
let av = out_some v.analyzed_view in
let s,res = run_command av#insert_message !current.cmd_coqmakefile in
!flash_info
(!current.cmd_coqmakefile ^ if s = Unix.WEXITED 0 then " succeeded" else " failed")
in
let _ = externals_factory#add_item "_Make Makefile" ~callback:coq_makefile_f
in
(* Configuration Menu *)
let reset_revert_timer () =
disconnect_revert_timer ();
if !current.global_auto_revert then
revert_timer := Some
(GMain.Timeout.add ~ms:!current.global_auto_revert_delay
~callback:
(fun () ->
do_if_not_computing (fun () -> revert_f ()) ();
true))
in reset_revert_timer (); (* to enable statup preferences timer *)
let auto_save_f () =
Vector.iter
(function
{view = view ; analyzed_view = Some av} as full ->
(try
av#auto_save
with _ -> ())
| _ -> ()
)
input_views
in
let reset_auto_save_timer () =
disconnect_auto_save_timer ();
if !current.auto_save then
auto_save_timer := Some
(GMain.Timeout.add ~ms:!current.auto_save_delay
~callback:
(fun () ->
do_if_not_computing (fun () -> auto_save_f ()) ();
true))
in reset_auto_save_timer (); (* to enable statup preferences timer *)
let configuration_menu = factory#add_submenu "Confi_guration" in
let configuration_factory = new GMenu.factory configuration_menu ~accel_path:"<CoqIde MenuBar>/Configuration" ~accel_group
in
let edit_prefs_m =
configuration_factory#add_item "Edit _preferences"
~callback:(fun () -> configure ();reset_revert_timer ())
in
let save_prefs_m =
configuration_factory#add_item "_Save preferences"
~callback:(fun () -> save_pref ())
in
let detach_menu = configuration_factory#add_item
"_Detach Scripting Window"
~callback:
(do_if_not_computing
(fun () ->
let nb = notebook () in
if nb#misc#toplevel#get_oid=w#coerce#get_oid then
begin
let nw = GWindow.window ~show:true () in
let parent = out_some nb#misc#parent in
ignore (nw#connect#destroy
~callback:
(fun () -> nb#misc#reparent parent));
nw#add_accel_group accel_group;
nb#misc#reparent nw#coerce
end
))
in
let detach_current_view = configuration_factory#add_item
"De_tach View"
~callback:
(do_if_not_computing
(fun () ->
match get_current_view () with
| {view=v;analyzed_view=Some av} ->
let w = GWindow.window ~show:true
~width:(!current.window_width/2)
~height:(!current.window_height)
~title:(match av#filename with
| None -> "*Unnamed*"
| Some f -> f)
()
in
let sb = GBin.scrolled_window
~packing:w#add ()
in
let nv = GText.view
~buffer:v#buffer
~packing:sb#add
()
in
nv#misc#modify_font
!current.text_font;
ignore (w#connect#destroy
~callback:
(fun () -> av#remove_detached_view w));
av#add_detached_view w
| _ -> ()
))
in
(* Help Menu *)
let help_menu = factory#add_submenu "_Help" in
let help_factory = new GMenu.factory help_menu
~accel_path:"<CoqIde MenuBar>/Help/"
~accel_modi:[]
~accel_group in
let _ = help_factory#add_item "Browse Coq _Manual"
~callback:(fun () -> browse (!current.doc_url ^ "main.html")) in
let _ = help_factory#add_item "Browse Coq _Library"
~callback:(fun () -> browse !current.library_url) in
let _ =
help_factory#add_item "Help for _keyword" ~key:GdkKeysyms._F1
~callback:(fun () ->
let av = out_some ((get_current_view ()).analyzed_view) in
av#help_for_keyword ())
in
let _ = help_factory#add_separator () in
let faq_m = help_factory#add_item "_FAQ" in
let about_m = help_factory#add_item "_About" in
(* End of menu *)
(* The vertical Separator between Scripts and Goals *)
let hb = GPack.paned `HORIZONTAL ~border_width:3 ~packing:vbox#add () in
_notebook := Some (GPack.notebook ~scrollable:true
~packing:hb#add1
());
let nb = notebook () in
let fr2 = GBin.frame ~shadow_type:`ETCHED_OUT ~packing:hb#add2 () in
let hb2 = GPack.paned `VERTICAL ~border_width:3 ~packing:fr2#add () in
let sw2 = GBin.scrolled_window
~vpolicy:`AUTOMATIC
~hpolicy:`AUTOMATIC
~packing:(hb2#add) () in
let sw3 = GBin.scrolled_window
~vpolicy:`AUTOMATIC
~hpolicy:`AUTOMATIC
~packing:(hb2#add) () in
let lower_hbox = GPack.hbox ~homogeneous:false ~packing:vbox#pack () in
let status_bar = GMisc.statusbar ~packing:(lower_hbox#pack ~expand:true) ()
in
let search_lbl = GMisc.label ~text:"Search:"
~show:false
~packing:(lower_hbox#pack ~expand:false) ()
in
let search_history = ref [] in
let search_input = GEdit.combo ~popdown_strings:!search_history
~enable_arrow_keys:true
~show:false
~packing:(lower_hbox#pack ~expand:false) ()
in
search_input#disable_activate ();
let ready_to_wrap_search = ref false in
let start_of_search = ref None in
let start_of_found = ref None in
let end_of_found = ref None in
let search_forward = ref true in
let matched_word = ref None in
let memo_search () =
matched_word := Some search_input#entry#text
(* if not (List.mem search_input#entry#text !search_history) then
(search_history :=
search_input#entry#text::!search_history;
search_input#set_popdown_strings !search_history);
start_of_search := None;
ready_to_wrap_search := false
*)
in
let end_search () =
prerr_endline "End Search";
memo_search ();
let v = (get_current_view ()).view in
v#buffer#move_mark `SEL_BOUND (v#buffer#get_iter_at_mark `INSERT);
v#coerce#misc#grab_focus ();
search_input#entry#set_text "";
search_lbl#misc#hide ();
search_input#misc#hide ()
in
let end_search_focus_out () =
prerr_endline "End Search(focus out)";
memo_search ();
let v = (get_current_view ()).view in
v#buffer#move_mark `SEL_BOUND (v#buffer#get_iter_at_mark `INSERT);
search_input#entry#set_text "";
search_lbl#misc#hide ();
search_input#misc#hide ()
in
ignore (search_input#entry#connect#activate ~callback:end_search);
ignore (search_input#entry#event#connect#key_press
~callback:(fun k -> let kv = GdkEvent.Key.keyval k in
if
kv = GdkKeysyms._Right
|| kv = GdkKeysyms._Up
|| kv = GdkKeysyms._Left
|| (kv = GdkKeysyms._g
&& (List.mem `CONTROL (GdkEvent.Key.state k)))
then end_search ();
false));
ignore (search_input#entry#event#connect#focus_out
~callback:(fun _ -> end_search_focus_out (); false));
to_do_on_page_switch :=
(fun i ->
start_of_search := None;
ready_to_wrap_search:=false)::!to_do_on_page_switch;
(* TODO : make it work !!! *)
let rec search_f () =
search_lbl#misc#show ();
search_input#misc#show ();
prerr_endline "search_f called";
if !start_of_search = None then begin
(* A full new search is starting *)
start_of_search :=
Some ((get_current_view ()).view#buffer#create_mark
((get_current_view ()).view#buffer#get_iter_at_mark `INSERT));
start_of_found := !start_of_search;
end_of_found := !start_of_search;
matched_word := Some "";
end;
let txt = search_input#entry#text in
let v = (get_current_view ()).view in
let iit = v#buffer#get_iter_at_mark `SEL_BOUND in
prerr_endline ("SELBOUND="^(string_of_int iit#offset));
prerr_endline ("INSERT="^(string_of_int
(v#buffer#get_iter_at_mark `INSERT)#offset));
(match
if !search_forward then iit#forward_search txt
else let npi = iit#forward_chars (Glib.Utf8.length txt) in
match
(npi#offset = (v#buffer#get_iter_at_mark `INSERT)#offset),
(let t = iit#get_text ~stop:npi in
!flash_info (t^"\n"^txt);
t = txt)
with
| true,true ->
(!flash_info "T,T";iit#backward_search txt)
| false,true -> !flash_info "F,T";Some (iit,npi)
| _,false ->
(iit#backward_search txt)
with
| None ->
if !ready_to_wrap_search then begin
ready_to_wrap_search := false;
!flash_info "Search wrapped";
v#buffer#place_cursor
(if !search_forward then v#buffer#start_iter else
v#buffer#end_iter);
search_f ()
end else begin
if !search_forward then !flash_info "Search at end"
else !flash_info "Search at start";
ready_to_wrap_search := true
end
| Some (start,stop) ->
prerr_endline "search: before moving marks";
prerr_endline ("SELBOUND="^(string_of_int (v#buffer#get_iter_at_mark `SEL_BOUND)#offset));
prerr_endline ("INSERT="^(string_of_int (v#buffer#get_iter_at_mark `INSERT)#offset));
v#buffer#move_mark `SEL_BOUND start;
v#buffer#move_mark `INSERT stop;
prerr_endline "search: after moving marks";
prerr_endline ("SELBOUND="^(string_of_int (v#buffer#get_iter_at_mark `SEL_BOUND)#offset));
prerr_endline ("INSERT="^(string_of_int (v#buffer#get_iter_at_mark `INSERT)#offset));
v#scroll_to_mark `SEL_BOUND
)
in
ignore (search_input#entry#event#connect#key_release
~callback:
(fun ev ->
if GdkEvent.Key.keyval ev = GdkKeysyms._Escape then begin
let v = (get_current_view ()).view in
(match !start_of_search with
| None ->
prerr_endline "search_key_rel: Placing sel_bound";
v#buffer#move_mark
`SEL_BOUND
(v#buffer#get_iter_at_mark `INSERT)
| Some mk -> let it = v#buffer#get_iter_at_mark
(`MARK mk) in
prerr_endline "search_key_rel: Placing cursor";
v#buffer#place_cursor it;
start_of_search := None
);
search_input#entry#set_text "";
v#coerce#misc#grab_focus ();
end;
false
));
ignore (search_input#entry#connect#changed search_f);
ignore (search_if#connect#activate
~callback:(fun b ->
search_forward:= true;
search_input#entry#coerce#misc#grab_focus ();
search_f ();
)
);
ignore (search_ib#connect#activate
~callback:(fun b ->
search_forward:= false;
(* Must restore the SEL_BOUND mark after
grab_focus ! *)
let v = (get_current_view ()).view in
let old_sel = v#buffer#get_iter_at_mark `SEL_BOUND
in
search_input#entry#coerce#misc#grab_focus ();
v#buffer#move_mark `SEL_BOUND old_sel;
search_f ();
));
let status_context = status_bar#new_context "Messages" in
let flash_context = status_bar#new_context "Flash" in
ignore (status_context#push "Ready");
status := Some status_bar;
push_info := (fun s -> ignore (status_context#push s));
pop_info := (fun () -> status_context#pop ());
flash_info := (fun ?(delay=5000) s -> flash_context#flash ~delay s);
(* Location display *)
let l = GMisc.label
~text:"Line: 1 Char: 1"
~packing:lower_hbox#pack () in
l#coerce#misc#set_name "location";
set_location := l#set_text;
(* Progress Bar *)
pulse :=
(let pb = GRange.progress_bar ~pulse_step:0.2 ~packing:lower_hbox#pack ()
in pb#set_text "CoqIde started";pb)#pulse;
let tv2 = GText.view ~packing:(sw2#add) () in
tv2#misc#set_name "GoalWindow";
let _ = tv2#set_editable false in
let tb2 = tv2#buffer in
let tv3 = GText.view ~packing:(sw3#add) () in
tv2#misc#set_name "MessageWindow";
let _ = tv2#set_wrap_mode `CHAR in
let _ = tv3#set_wrap_mode `WORD in
let _ = tv3#set_editable false in
let _ = GtkBase.Widget.add_events tv2#as_widget
[`ENTER_NOTIFY;`POINTER_MOTION] in
let _ = tv2#event#connect#motion_notify
~callback:
(fun e ->
(do_if_not_computing
(fun e ->
let win = match tv2#get_window `WIDGET with
| None -> assert false
| Some w -> w
in
let x,y = Gdk.Window.get_pointer_location win in
let b_x,b_y = tv2#window_to_buffer_coords
~tag:`WIDGET
~x
~y
in
let it = tv2#get_iter_at_location ~x:b_x ~y:b_y in
let tags = it#tags in
List.iter
( fun t ->
ignore (GtkText.Tag.event
t#as_tag
tv2#as_widget
e
it#as_iter))
tags;
false)) e;
false)
in
change_font :=
(fun fd ->
tv2#misc#modify_font fd;
tv3#misc#modify_font fd;
Vector.iter
(fun {view=view} -> view#misc#modify_font fd)
input_views;
);
let about (b:GText.buffer) =
(try
let image = Filename.concat lib_ide "coq.png" in
let startup_image = GdkPixbuf.from_file image in
b#insert_pixbuf ~iter:b#start_iter
~pixbuf:startup_image;
b#insert ~iter:b#start_iter "\t\t";
with _ -> ());
b#insert "\nCoqIde: an experimental Gtk2 interface for Coq.\n\nVersion information\n--------\n";
b#insert ((Coq.version ()));
b#insert "\nAuthor: Benjamin Monate\nDo not hesitate to report bugs or missing features." in
about tv2#buffer;
w#add_accel_group accel_group;
(* Remove default pango menu for textviews *)
ignore (tv2#event#connect#button_press ~callback:
(fun ev -> GdkEvent.Button.button ev = 3));
ignore (tv3#event#connect#button_press ~callback:
(fun ev -> GdkEvent.Button.button ev = 3));
tv2#misc#set_can_focus true;
tv3#misc#set_can_focus true;
ignore (tv2#buffer#create_mark
~name:"end_of_conclusion"
tv2#buffer#start_iter);
ignore (tv3#buffer#create_tag
~name:"error"
[`FOREGROUND "red"]);
w#show ();
message_view := Some tv3;
proof_view := Some tv2;
let view = create_input_tab "*Unnamed Buffer*" in
let index = add_input_view {view = view;
analyzed_view = None;
}
in
(get_input_view index).analyzed_view <- Some (new analyzed_view index);
activate_input index;
set_tab_image index yes_icon;
view#misc#modify_font !current.text_font;
tv2#misc#modify_font !current.text_font;
tv3#misc#modify_font !current.text_font;
ignore (about_m#connect#activate
~callback:(fun () -> about tv3#buffer));
ignore (faq_m#connect#activate
~callback:(fun () ->
load (Filename.concat lib_ide "FAQ")));
resize_window := (fun () ->
w#resize
~width:!current.window_width
~height:!current.window_height);
ignore (w#misc#connect#size_allocate
(let old_w = ref 0
and old_h = ref 0 in
fun {Gtk.width=w;Gtk.height=h} ->
if !old_w <> w or !old_h <> h then
begin
old_h := h;
old_w := w;
hb#set_position (w/2);
hb2#set_position (h/2);
!current.window_height <- h;
!current.window_width <- w;
end
));
ignore(nb#connect#switch_page
~callback:
(fun i ->
prerr_endline ("switch_page: starts " ^ string_of_int i);
List.iter (function f -> f i) !to_do_on_page_switch;
prerr_endline "switch_page: success")
);
ignore(tv2#event#connect#enter_notify
(fun _ ->
if !current.contextual_menus_on_goal then
begin
let w = (out_some (get_active_view ()).analyzed_view) in
!push_info "Computing advanced goal's menus";
prerr_endline "Entering Goal Window. Computing Menus....";
w#show_goals_full;
prerr_endline "....Done with Goal menu";
!pop_info();
end;
false;
));
List.iter (fun f ->
if Sys.file_exists f then load f else
if (let l = String.length f in
l >= 3 && String.sub f (l-3) 2 = ".v")
then load f
else load (f^".v")) files;
if List.length files >=1 then activate_input 1
;;
let start () =
let files = Coq.init () in
ignore_break ();
GtkMain.Rc.add_default_file (Filename.concat lib_ide ".coqide-gtk2rc");
(try
GtkMain.Rc.add_default_file (Filename.concat (Sys.getenv "HOME") ".coqide-gtk2rc");
with Not_found -> ());
ignore (GtkMain.Main.init ());
GtkData.AccelGroup.set_default_mod_mask
(Some [`CONTROL;`SHIFT;`MOD1;`MOD3;`MOD4]);
cb_ := Some (GData.clipboard Gdk.Atom.primary);
ignore (
Glib.Message.set_log_handler ~domain:"Gtk" ~levels:[`ERROR;`FLAG_FATAL;
`WARNING;`CRITICAL]
(fun ~level msg -> failwith ("Coqide internal error: " ^ msg)));
Command_windows.main ();
Blaster_window.main 9;
main files;
while true do
try
GtkThread.main ()
with
| Sys.Break -> prerr_endline "Interrupted." ; flush stderr
| e ->
Pervasives.prerr_endline ("CoqIde unexpected error:" ^ (Printexc.to_string e));
flush stderr;
crash_save 127
done
|