1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
|
Unit oCrt;
{---------------------------------------------------------------------------
CncWare
(c) Copyright 1999-2000
---------------------------------------------------------------------------
Filename..: ocrt.pp
Programmer: Ken J. Wright, ken@cncware.com
Date......: 03/01/99
Purpose - crt unit replacement plus OOP windows using ncurses.
NOTE: All of the crt procedures & functions have been replaced with ncurses
driven versions. This makes the ncurses library a little easier to use in a
Pascal program and benefits from terminal independence.
-------------------------------<< REVISIONS >>--------------------------------
Ver | Date | Prog| Description
-------+----------+-----+-----------------------------------------------------
1.00 | 03/01/99 | kjw | Initial Release.
| 03/22/99 | kjw | Added nDelWindow(), delwin() does not nil pointer.
1.01 | 11/22/99 | kjw | Added the following: nEcho, ClrEol, ClrBot, InsLine,
| DelLine, Delay, nClrEol, nClrBot, nInsLine, nDelLine,
| nRefresh, nScroll, nDrawBox, nNewWindow, nWinColor,
| nWriteScr, nFrame & some functions for returning
| line drawing character values.
1.02 | 11/26/99 | kjw | Added nKeypressed().
1.03 | 12/01/99 | kjw | Added global boolean nIsActive.
1.04 | 12/03/99 | kjw | 1) Added procedures nHline, nVLine, & nWriteAC.
| 2) Changed all the line draw character functions
| (i.e., nHL, nVL) to return the longint value from
| ncurses rather than the character value (which was
| not very useful!). Now these can be passed to
| nWriteAC() to correctly write the line drawing
| characters.
| 3) Added more of the ACS characters.
1.05 | 12/08/99 | kjw | 1) StartCurses() is now done as part of the unit
| initialization block. EndCurses() is done via an
| exit procedure.
| 2) nIsActive is now a function (safer!).
| 3) Added panel unit for windowing.
| 4) Added tnWindow object.
1.10 | 12/12/99 | kjw | Added nSEdit().
1.11 | 12/12/99 | kjw | Added Special property to tEC object. Now any normal
| character can trigger sedit to exit.
------------------------------------------------------------------------------
2.00 | 12/13/99 | kjw | nCrt renamed to oCrt. A new nCrt has been created
| which is a drop-in replacement for the FPC crt unit.
| oCrt contains all of nCrt plus the OOP extensions.
| All of the common code is in ncrt.inc.
2.01 | 12/15/99 | kjw | 1) A tnWindow object now becomes the target for
| stdout following Init & Show. A Hide will put the
| target back to stdscr.
| 2) Added nSetActiveWin() to manually pick a target
| window for stdout.
2.02 | 12/15/99 | kjw | 1) PutFrame applied keypad to stdscr instead of sub.
| 2) See ncrt.inc
2.03 | 12/16/99 | kjw | 1) See ncrt.inc
| 2) Added shift/f-key constants.
2.04 | 01/04/00 | kjw | See ncrt.inc
2.05 | 01/06/00 | kjw | 1) See ncrt.inc.
| 2) Added boolean internal_fwrite. FWrite was failing
| when trying to write outside of the active window.
| 3) nSEdit was not handling tec.firsttime correctly
| when a tec.special was processed.
2.06 | 01/11/00 | kjw | See ncrt.inc.
2.07 | 01/31/00 | kjw | 1) See ncrt.inc.
| 2) Added getcolor, getframecolor, getheadercolor
| methods to tnWindow.
2.08 | 06/09/00 | kjw | 1) Added Picture property to tEC object. This is
| used for picture input masking in nSEdit.
| 2) Added nCheckPxPicture() function.
| 3) nSEdit() changed to use picture input masking.
| See pxpic.txt for a description of the picture
| string format.
2.08.01 | 06/11/2000 | kjw
| Fixed the spin cycle problem in nCheckPXPicture.
2.09.00 | 06/16/2000 | kjw
| 1) nSEdit renamed to nEdit. Now nSEdit just calls nEdit() for
| compatibility.
| 2) Added overloaded nEdit functions for Integer, LongInt, and
| Real types.
| 3) Changed nEdit() embedding of control characters to preface
| with a ^P. Also now uses a highlight attribute for the control
| characters.
| 4) Added control character cursor control to nEdit().
| 5) Added Esc/1..0 = F1..F10 to nEdit().
| 6) Added '@' to match set in pxpic.inc.
| 7) tnWindow.Align was not positioning properly. Off by one.
| 8) tnWindow.Init used wrong pointer for keypad and intrflush.
| 9) tnWindow.Edit was messing up ec.Special.
2.09.01 | 06/16/2000 | kjw
| 1) nStdScr (tnWindow) added and initialized at unit startup.
| nStdScr can be used for a default full screen window.
| 2) nEdit overloaded to work without a window pointer. It works
| with the currently active window.
2.10.00 | 06/23/2000 | kjw
| 1) Added character mapping to the tEC object. This includes the
| ChMap property and the AddChMap() and ClrChMap() methods.
| 2) Added AppendMode property to the tEC object. The character
| typed in nEdit() is always appended to the current string
| regardless of cursor position. Useful when ExitMode is true.
| 3) tnWindow.Done was not re-assigning an ActiveWn.
| 4) nEdit LeftArrow was allowing < x.
| 5) Added nEditNumber() function.
| 6) Added nEditDate() function.
| 7) I made a command decision and renamed the tEC.FirstTime
| property to tEC.ClearMode as it is more descriptive.
2.11.00 | 1) Cleaned up some loose ends with 2.10.
| 2) Some more overloading
| 3) Removed tnWindow.readln, write, and writeln methods.
| 4) See ncrt.inc.
2.12.00 | 1) Remove the "n" from the tnWindow.editxxx functions for
| consistancy. Procedurals are prefaced with an "n". Object methods
| are not.
| 2) Procedural FWrite renamed to nFWrite.
| 3) tEC object type renamed to tnEC.
| 4) Added nMakeWindow(), a one line procedural wrapper for
| tnWindow.Init and tnWindow.PutHeader.
| 5) Added GetX, GetY, IsFramed methods to tnWindow;
| 6) Fixed nFWrite for too long strings;
| 7) tnWindow.Align was wrong when justify was none.
2.13.00 | 06/30/00 | kjw | See ncrt.inc
2.14.00 | 07/05/00 | kjw | See ncrt.inc
2.15.00 | 07/12/00 | kjw |
| 1) Renamed IsBold to nIsBold. Renamed SetColorPair to nSetColorPair.
| 2) Added tnMenu object (not functional);
| 07/17/00 | kjw |
| 2) Argh!! Align method had another mistake. Changed x/y=1 to =0.
| 3) Added nShowMessage() function.
| 4) tnMenu is now minimally functional.
| 07/25/00 | kjw |
| 1) tnMenu fully functional for current level.
2.16.00 | 08/14/2000 | kjw |
| 1) Added Get/SetMark(), IsActive(), IsValid(), IsAssigned(),
| SetIndex() to tnMenu.
| 08/18/2000 | kjw |
| 1) Added nkXXX constants for all(?) extended keys.
| 2) Changed all uses of extended keys to use new nkXXX's.
| 3) Edit overloaded to return a nkXXX in ch rather that a char.
| 4) Resize method added to tnWindow.
| 5) AddChMap overloaded for preferred (easier) use with nkXXX's.
| 08/24/2000 | kjw |
| 1) Added nReadScr, nReadScrStr, nReadScrColor, nWriteScrStr,
| nGrabScreen, nPopScreen, nReleaseScreen.
| 2) Fixed some trouble with PrevWn accuracy.
2.16.01 | 05/26/2009 | kjw |
| 1) Corrected error with tnWindow.PutFrame and wattr_get. Recent
| updates to ncurses and ocrt by the FreePascal team introduced an
| error with tnWindow.PutFrame's use of wattr_get.
------------------------------------------------------------------------------
}
Interface
Uses
{$ifdef unix}
baseunix,
termio,
{$endif}
ncurses,panel,menu,
dos; {dos needed for TextRec}
Const
{ decimal number format, us or european }
nUS = 0;
nEURO = 1;
nDecFmt : byte = nUS;
{ border styles for text boxes }
btNone : integer = 0;
btSingle : integer = 1;
btDouble : integer = 2;
{ ordinal keycodes, new style, preferred }
nkEnter = 13; { Enter key }
nkEsc = 27; { Home key }
nkHome = -71; { Home key }
nkUp = -72; { Up arrow }
nkPgUp = -73; { PgUp key }
nkLeft = -75; { Left arrow }
nkRight = -77; { Right arrow }
nkEnd = -79; { End key }
nkDown = -80; { Down arrow }
nkPgDn = -81; { PgDn key }
nkIns = -82; { Insert key }
nkDel = -83; { Delete key }
nkCtrlLeft = -115; { Ctrl/left arrow }
nkCtrlRight = -116; { Ctrl/right arrow }
nkF1 = -59; { f1 key }
nkF2 = -60; { f2 key }
nkF3 = -61; { f3 key }
nkF4 = -62; { f4 key }
nkF5 = -63; { f5 key }
nkF6 = -64; { f6 key }
nkF7 = -65; { f7 key }
nkF8 = -66; { f8 key }
nkF9 = -67; { f9 key }
nkF10 = -68; { f10 key }
nkF11 = -84; { shift/f1 key }
nkF12 = -85; { shift/f2 key }
nkF13 = -86; { shift/f3 key }
nkF14 = -87; { shift/f4 key }
nkF15 = -88; { shift/f5 key }
nkF16 = -89; { shift/f6 key }
nkF17 = -90; { shift/f7 key }
nkF18 = -91; { shift/f8 key }
nkF19 = -92; { shift/f9 key }
nkF20 = -93; { shift/f10 key }
nkAltA = -30; { alt/a }
nkAltB = -48; { alt/b }
nkAltC = -46; { alt/c }
nkAltD = -32; { alt/d }
nkAltE = -18; { alt/e }
nkAltF = -33; { alt/f }
nkAltG = -34; { alt/g }
nkAltH = -35; { alt/h }
nkAltI = -23; { alt/i }
nkAltJ = -36; { alt/j }
nkAltK = -37; { alt/k }
nkAltL = -38; { alt/l }
nkAltM = -50; { alt/m }
nkAltN = -49; { alt/n }
nkAltO = -24; { alt/o }
nkAltP = -25; { alt/p }
nkAltQ = -16; { alt/q }
nkAltR = -19; { alt/r }
nkAltS = -31; { alt/s }
nkAltT = -20; { alt/t }
nkAltU = -22; { alt/u }
nkAltV = -47; { alt/v }
nkAltW = -17; { alt/w }
nkAltX = -45; { alt/x }
nkAltY = -21; { alt/y }
nkAltZ = -44; { alt/z }
nkAlt1 = -120; { alt/1 }
nkAlt2 = -121; { alt/2 }
nkAlt3 = -122; { alt/3 }
nkAlt4 = -123; { alt/4 }
nkAlt5 = -124; { alt/5 }
nkAlt6 = -125; { alt/6 }
nkAlt7 = -126; { alt/7 }
nkAlt8 = -127; { alt/8 }
nkAlt9 = -128; { alt/9 }
nkAlt0 = -129; { alt/0 }
nkAltMinus = -130; { alt/- }
nkAltEqual = -131; { alt/= }
nkAltTab = -15; { alt/tab }
{ ordinal key codes (old style, don't break any apps!) }
nKeyEnter = nkEnter;
nKeyEsc = nkEsc;
nKeyHome = abs(nkHome);
nKeyUp = abs(nkUp);
nKeyPgUp = abs(nkPgUp);
nKeyLeft = abs(nkLeft);
nKeyRight = abs(nkRight);
nKeyEnd = abs(nkEnd);
nKeyDown = abs(nkDown);
nKeyPgDn = abs(nkPgDn);
nKeyIns = abs(nkIns);
nKeyDel = abs(nkDel);
nKeyCtrlLeft = abs(nkCtrlLeft);
nKeyCtrlRight = abs(nkCtrlRight);
nKeyF1 = abs(nkF1);
nKeyF2 = abs(nkF2);
nKeyF3 = abs(nkF3);
nKeyF4 = abs(nkF4);
nKeyF5 = abs(nkF5);
nKeyF6 = abs(nkF6);
nKeyF7 = abs(nkF7);
nKeyF8 = abs(nkF8);
nKeyF9 = abs(nkF9);
nKeyF10 = abs(nkF10);
nKeyF11 = abs(nkF11);
nKeyF12 = abs(nkF12);
nKeyF13 = abs(nkF13);
nKeyF14 = abs(nkF14);
nKeyF15 = abs(nkF15);
nKeyF16 = abs(nkF16);
nKeyF17 = abs(nkF17);
nKeyF18 = abs(nkF18);
nKeyF19 = abs(nkF19);
nKeyF20 = abs(nkF20);
{ character mapping }
nMaxChMaps = 255; { maximun index for character mapping }
{ menus }
nMAXMENUITEMS = 100;
Type
{*** structures to save a screen via nGrabScreen ***}
pnOneRow = pchtype;
{ a buffer for a max of 256 chtype items accessed via pchar }
tnOneRow = array [0..1023] of char;
{ a one way linked list of screen rows }
pnRowBuf = ^tnRowBuf;
tnRowBuf = Record
row : pnOneRow; { one row of a screen }
next : pnRowBuf; { next row in the list }
End;
{ the header record of a saved screen }
pnScreenBuf = ^tnScreenBuf;
tnScreenBuf = Record
x, { column origin }
y, { row origin }
n : integer; { number of columns }
first : pnRowBuf; { pointer to first row in list }
End;
tnS10 = string[10];
{ for scrolling a window }
tnUpDown = (up,down);
{ for window & header positioning }
tnJustify = (none,left,center,right,top,bottom);
{ used for nEC character mapping }
(********* Note : these are obsolete *******)
nChMapStr = string[4];
{nChMap = array [1..nMaxChMaps] of nChMapStr;}
(*******************************************)
nChMap = array [1..nMaxChMaps,1..2] of integer;
{ used for nSEdit }
{------------------------------------------------------------------------
ClearMode = true : passed string is initialized to ''.
IsHidden = true : causes a string of '*' to display in place of
the actual characters typed.
InsMode : toggle for insert/overwrite mode.
ExitMode = true : sedit exits after every keystroke.
= false: sedit only exits when #27,#13, or any extended
key *except* for Home,End,RArrow,LArrow.
Special : If a pressed key is found in this string, then
sedit exits without processing.
Picture : An input mask string. See pxpic.txt for an
explanation of picture strings.
CtrlColor : The highlight color for embedded control characters.
ChMap : An array of character triplets describing a character
that is typed and what it should map to.
------------------------------------------------------------------------}
tnEC = Object
ClearMode,
IsHidden,
InsMode,
ExitMode,
AppendMode : boolean;
Special : string;
Picture : string;
CtrlColor : integer;
ChMap : nChMap;
Constructor Init(ft,ih,im,em,ap : boolean;
s,p : string;
cc : integer;
mp : nChMap);
Destructor Done;
Function AddChMap(_in,_out : integer) : integer;
Function AddChMap(mp : nChMapStr) : integer;
Procedure ClrChMap(idx : integer);
End;
pwin = PWindow;
pnWindow = ^tnWindow;
tnWindow = Object
Private
wn : pwindow; { pointer to win or sub to read/write to }
win : pwindow; { pointer to main window record }
sub : pwindow; { sub window if a bordered window }
pan : ppanel; { pointer to panel record }
subp : ppanel; { sub panel if a bordered window }
visible : boolean; { is the window visible? }
hasframe : boolean;
wincolor, { window color }
framecolor, { frame color }
hdrcolor : integer; { header color }
hdrpos : tnJustify; { header alignment }
header : string[80]; { header string }
Procedure init_wins(x,y,x1,y1 : integer);
Procedure done_wins;
Public
data : pointer; { a pointer to user defined data }
ec : tnEC; { edit control settings }
Constructor Init(x,y,x1,y1,wcolor : integer;
border : boolean;
fcolor : integer);
Destructor Done;
Procedure Resize(cols_,rows_ : integer);
Procedure Active; { make this the current window }
Procedure Show; { display the window }
Procedure Hide; { hide the window }
Procedure ClrScr;
Procedure ClrEol;
Procedure ClrBot;
Procedure InsLine;
Procedure DelLine;
Procedure GotoXY(x,y : integer);
Function WhereX : integer;
Function WhereY : integer;
Function ReadKey : char;
Procedure WriteAC(x,y,att,c : longint);
Procedure FWrite(x,y,att,z : integer; s : string);
Procedure DrawBox(LineStyle,x1,y1,x2,y2,att : Integer);
Function GetHeader : string;
Procedure PutHeader(hdr : string; hcolor : integer; hpos : tnJustify);
Procedure SetColor(att : integer);
Function GetColor : integer;
Function GetFrameColor : integer;
Function GetHeaderColor : integer;
Procedure PutFrame(att : integer);
Procedure Move(x,y : integer);
Procedure Scroll(ln : integer; dir : tnUpDown);
Procedure Align(hpos,vpos : tnJustify);
Function Rows : integer;
Function Cols : integer;
Function GetX : integer;
Function GetY : integer;
Function IsFramed : boolean;
Function IsVisible : Boolean;
Function Edit(x,y,att,z,CursPos:Integer;es:String;Var ch : integer) : String;
Function Edit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : integer) : LongInt;
Function Edit(x,y,att,z,CursPos:Integer;es:Real;Var ch : integer) : Real;
Function Edit(x,y,att,z,CursPos:Integer;es:String;Var ch : Char) : String;
Function Edit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : Char) : LongInt;
Function Edit(x,y,att,z,CursPos:Integer;es:Real;Var ch : Char) : Real;
Function EditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : real;var esc : boolean) : real;
Function EditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : longint;var esc : boolean) : longint;
Function EditDate(x,y,att : integer;initv : string;var esc : boolean) : string;
End;
pnMenuStr = ^tnMenuStr;
tnMenuStr = array [0..79] of char; { storage for menu item text }
pnMenu = ^tnMenu;
tnMenu = Object
Private
tc, { text (item) color }
cc, { cursor (current item) color }
fc, { frame color }
hc, { header Color }
gc, { non-selectable color }
x,y, { top,left corner of window }
r,c, { how many rows & columns of items to display }
wid, { minimum window width }
iidx, { item index }
merr { menu error code }
: integer;
loopon,
framed,
posted : boolean; { is the menu posted? }
mark : tnS10;
items : array[1..nMAXMENUITEMS] of pnMenuStr;
pi : array[1..nMAXMENUITEMS] of pItem;
pm : pMenu;
win : pnWindow;
Procedure InitWin;
Procedure ClearItem(idx : integer);
Procedure AddItem(i : integer; s : string);
Function Selectable(idx : integer) : boolean;
Function IsValid(idx : integer) : boolean;
Public
Constructor Init(_x,_y,_w,_r,_c,_tc,_cc,_gc : integer;
_fr : boolean; _fc : integer);
Destructor Done;
Procedure Post; { create the menu of current items }
Procedure UnPost; { unbind the items and free the menu }
Procedure Start; { start user input, includes show }
Procedure Stop; { a shortcut for hide,unpost }
Procedure Show; { display the menu, includes post }
Procedure Hide; { remove the menu from the display }
Function Wind : pnWindow; { pointer to the window object }
Procedure Move(_x,_y : integer); { shortcut window move }
Procedure Align(hpos,vpos : tnJustify);{ shortcut window align }
Procedure PutHeader(hdr : string; hcolor : integer; hpos : tnJustify);
Procedure Clear; { unpost and clear the menu item list }
Function Add(s : string) : integer; { append a menu item }
Procedure Insert(idx : integer; s : string); { insert a menu item }
Procedure Remove(idx : integer); { delete a menu item }
Procedure Change(idx : integer; s : string); { change an item }
Procedure Active(idx : integer; b : boolean); { toggle gray }
Function IsActive(idx : integer) : boolean; { item active ? }
Procedure Spin(b : boolean);{ toggle item looping }
Function Status : integer;{ return the current error/status code }
Function Index : integer; { return the current item index }
Procedure SetIndex(idx : integer); { set the item index }
Function Count : integer; { number of items in the menu }
Function Rows(_r : integer) : integer; {get/set menu rows }
Function Cols(_c : integer) : integer; {get/set menu columns }
Function IsAssigned(idx : integer) : boolean; { valid & assigned }
Function GetMark : string; { return the item mark string }
Procedure SetMark(ms : string); { set the mark string }
Procedure Refresh;
Procedure SetColor(att : byte); { change text color }
Procedure SetCursorColor(att : byte); { change cursor color }
Procedure SetFrameColor(att : byte); { change frame color }
Procedure SetGrayColor(att : byte); { change inactive color }
End;
Var
nStdScr : tnWindow; { default window created at unit initialization }
nscreen : pwin; { pointer to ncurses stdscr }
nEC : tnEC; { global edit control object }
Procedure nSetActiveWin(win : pwindow);
Procedure nDoNow(donow : boolean);
Function nKeypressed(timeout : word) : boolean;
Procedure nEcho(b : boolean);
Procedure nWindow(var win : pWindow; x,y,x1,y1 : integer);
Procedure nNewWindow(var win : pWindow; x,y,x1,y1 : integer);
Procedure nDelWindow(var win : pWindow);
Procedure nWinColor(win : pWindow; att : integer);
Procedure nClrScr(win : pWindow; att : integer);
Procedure nClrEol(win : pWindow);
Procedure nClrBot(win : pWindow);
Procedure nInsLine(win : pWindow);
Procedure nDelLine(win : pWindow);
Procedure nGotoXY(win : pWindow; x,y : integer);
Function nWhereX(win : pWindow) : integer;
Function nWhereY(win : pWindow) : integer;
Function nReadkey(win : pWindow) : char;
Function nReadln(win : pWindow) : string;
Procedure nWrite(win : pWindow; s : string);
Procedure nWriteln(win : pWindow; s : string);
Procedure nWriteScr(win : pWindow; x,y,att : integer; s : string);
Procedure nRefresh(win : pWindow);
Procedure nScroll(win : pWindow; lines : integer; dir : tnUpDown);
Procedure nDrawBox(win : pWindow; LineStyle,x1,y1,x2,y2,att : Integer);
Procedure nFrame(win : pWindow);
Function nRows(win : pWindow) : integer;
Function nCols(win : pWindow) : integer;
Function nHL : longint; { horizontal line }
Function nVL : longint; { vertical line }
Function nUL : longint; { upper left corner }
Function nLL : longint; { lower loft corner }
Function nUR : longint; { upper right corner }
Function nLR : longint; { lower right corner }
Function nLT : longint; { left tee }
Function nRT : longint; { right tee }
Function nTT : longint; { top tee }
Function nBT : longint; { bottom tee }
Function nPL : longint; { plus, + }
Function nLA : longint; { left arrow }
Function nRA : longint; { right arrow }
Function nUA : longint; { up arror }
Function nDA : longint; { down arrow }
Function nDI : longint; { diamond }
Function nCB : longint; { checkerboard }
Function nDG : longint; { degree }
Function nPM : longint; { plus/minus }
Function nBL : longint; { bullet }
Procedure nHLine(win : pwindow; col,row,attr,x : integer);
Procedure nVLine(win : pwindow; col,row,attr,y : integer);
Procedure nWriteAC(win : pwindow; x,y : integer; att,acs_char : longint);
Function nIsBold(att : integer) : boolean;
Function nSetColorPair(att : integer) : integer;
Procedure nFWrite(win : pwindow; col,row,attrib : integer; clear : integer; s : string);
Procedure nFWrite(col,row,attrib : integer; clear : integer; s : string);
Function nSEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:String;Var ch : Char) : String;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:String;Var ch : Char) : String;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:LongInt;Var ch : Char) : LongInt;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:Real;Var ch : Char) : Real;
Function nEdit(x,y,att,z,CursPos:Integer;es:String;Var ch : Char) : String;
Function nEdit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : Char) : LongInt;
Function nEdit(x,y,att,z,CursPos:Integer;es:Real;Var ch : Char) : Real;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:String;Var chv : integer) : String;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:LongInt;Var ch : integer) : LongInt;
Function nEdit(win : pwindow; x,y,att,z,CursPos:Integer;es:Real;Var ch : integer) : Real;
Function nEdit(x,y,att,z,CursPos:Integer;es:String;Var ch : integer) : String;
Function nEdit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : integer) : LongInt;
Function nEdit(x,y,att,z,CursPos:Integer;es:Real;Var ch : integer) : Real;
Function nEditNumber(win : pwindow; x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : real;var esc : boolean) : real;
Function nEditNumber(win : pwindow; x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : longint;var esc : boolean) : longint;
Function nEditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : real;var esc : boolean) : real;
Function nEditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : longint;var esc : boolean) : longint;
Function nEditDate(win : pwindow; x,y,att : integer;initv : string;var esc : boolean) : string;
Function nEditDate(x,y,att : integer;initv : string;var esc : boolean) : string;
Procedure nMakeWindow(var win : tnWindow;x1,y1,x2,y2,ta,ba,ha : integer;hasframe : boolean;hdrpos : tnJustify;hdrtxt : string);
Procedure nMakeWindow(var win : pnWindow;x1,y1,x2,y2,ta,ba,ha : integer;hasframe : boolean;hdrpos : tnJustify;hdrtxt : string);
Procedure nMakeMenu(var mnu : tnMenu;x,y,_w,_r,_c,ta,ca,ga,ba,ha : integer;hasframe : boolean;hdrpos : tnJustify;hdrtxt : string);
Procedure nMakeMenu(var mnu : pnMenu;x,y,_w,_r,_c,ta,ca,ga,ba,ha : integer;hasframe : boolean;hdrpos : tnJustify;hdrtxt : string);
Function nShowMessage(msg : string;matt : byte;hdr : string;hatt : byte;ack : boolean) : pnWindow;
Function nReadScr(win : pWindow; x,y,n : integer) : string;
Function nReadScr(x,y,n : integer) : string;
Function nReadScrStr(win : pWindow; x,y,n : integer; buf : pchtype) : pchtype;
Function nReadScrStr(x,y,n : integer; buf : pchtype) : pchtype;
Function nReadScrColor(win : pWindow; x,y : integer) : integer;
Function nReadScrColor(x,y : integer) : integer;
Procedure nWriteScrStr(win : pWindow; x,y : integer; s : pchtype);
Procedure nWriteScrStr(x,y : integer; s : pchtype);
Procedure nGrabScreen(var p : pnScreenBuf; x,y,c,r : integer; win : pWindow);
Procedure nGrabScreen(var p : pnScreenBuf; x,y,c,r : integer);
Procedure nGrabScreen(var p : pnScreenBuf);
Procedure nPopScreen(p : pnScreenBuf; x,y : integer; win : pWindow);
Procedure nPopScreen(p : pnScreenBuf; x,y : integer);
Procedure nPopScreen(p : pnScreenBuf);
Procedure nReleaseScreen(p : pnScreenBuf);
Function nCheckPxPicture(var s, Pic : string; var CPos : integer) : word;
{$i ncrt.inc}
{$i pxpic.inc}
Var
_chmap : nChMap;
{---------------------------------------------------------------------
tnWindow.Init
Create a new window.
x = upper left corner x, screen relative
y = upper left corner y, screen relative
x1 = lower right corner x, screen relative
y1 = lower right corner y, screen relative
wcolor = window/text color
border = include a frame?
fcolor = frame color
---------------------------------------------------------------------}
Constructor tnWindow.Init(x,y,x1,y1,wcolor : integer;
border : boolean;
fcolor : integer);
Var
mp : nChMap;
Begin
hasframe := border;
wincolor := wcolor;
framecolor := fcolor;
hdrcolor := wcolor;
header := '';
data := nil;
visible := false;
init_wins(x,y,x1,y1);
FillChar(mp,SizeOf(mp),#0);
ec.Init(false,false,false,false,false,'','',15,mp);
ec.ClrChMap(0);
SetActiveWn(wn);
End;
{ deallocate the window }
Destructor tnWindow.Done;
Begin
done_wins;
ec.Done;
SetActiveWn(nscreen);
End;
Procedure tnWindow.init_wins(x,y,x1,y1 : integer);
Begin
win := nil;
sub := nil;
pan := nil;
subp := nil;
win := newwin(y1-y+1,x1-x+1,y-1,x-1);
pan := new_panel(win);
hide_panel(pan);
If hasframe Then
PutFrame(framecolor)
Else Begin
wn := win;
wbkgd(win,COLOR_PAIR(nSetColorPair(wincolor)));
If nisbold(wincolor) then wattr_on(win,A_BOLD,nil);
scrollok(win,bool(true));
intrflush(win,bool(false));
keypad(win,bool(true));
End;
End;
Procedure tnWindow.done_wins;
Begin
If subp <> nil Then del_panel(subp);
If pan <> nil Then del_panel(pan);
If sub <> nil Then delwin(sub);
If (win <> nil) and (win <> stdscr) Then delwin(win);
subp := nil;
pan := nil;
sub := nil;
If win <> stdscr Then win := nil;
End;
Procedure tnWindow.ReSize(cols_,rows_ : integer);
Var
xx,yy,
mx,my : integer;
vis : boolean;
Begin
xx := GetX;
yy := GetY;
{ can't be larger than full screen }
If cols_ > nMaxCols Then cols_ := nMaxCols;
If rows_ > nMaxRows Then rows_ := nMaxRows;
{ set the bottom, right corner }
mx := xx+cols_-1;
my := yy+rows_-1;
{ expand left? }
If mx > nMaxCols Then xx := nMaxCols-cols_+1;
{ expand up? }
If my > nMaxRows Then yy := nMaxRows-rows_+1;
If xx < 1 Then xx := 1;
If yy < 1 Then yy := 1;
{ reset the bottom, right corner }
mx := xx+cols_-1;
my := yy+rows_-1;
{ constrain to full screen }
If mx > nMaxCols Then mx := nMaxCols;
If my > nMaxRows Then my := nMaxRows;
vis := visible;
Hide;
visible := vis;
done_wins;
init_wins(xx,yy,mx,my);
If visible Then Show;
End;
{ make the window current for all normal crt requests }
Procedure tnWindow.Active;
Begin
SetActiveWn(wn);
End;
{ display the window and move to the top }
Procedure tnWindow.Show;
Begin
SetActiveWn(wn);
visible := true;
show_panel(pan);
If subp <> nil Then show_panel(subp);
update_panels;
doupdate;
End;
{ hide the window }
Procedure tnWindow.Hide;
Begin
{ don't go back to yourself }
If PrevWn <> wn Then
SetActiveWn(PrevWn)
Else
SetActiveWn(stdscr);
visible := false;
If subp <> nil Then hide_panel(subp);
hide_panel(pan);
update_panels;
doupdate;
GotoXY(WhereX,WhereY);
End;
Procedure tnWindow.ClrScr;
Begin
tmp_b := dorefresh;
dorefresh := visible;
nClrScr(wn,wincolor);
dorefresh := tmp_b;
End;
Procedure tnWindow.ClrEol;
Begin
tmp_b := dorefresh;
dorefresh := visible;
nClrEol(wn);
dorefresh := tmp_b;
End;
Procedure tnWindow.ClrBot;
Begin
tmp_b := dorefresh;
dorefresh := visible;
nClrBot(wn);
dorefresh := tmp_b;
End;
Procedure tnWindow.InsLine;
Begin
tmp_b := dorefresh;
dorefresh := visible;
nInsLine(wn);
dorefresh := tmp_b;
End;
Procedure tnWindow.DelLine;
Begin
tmp_b := dorefresh;
dorefresh := visible;
nDelLine(wn);
dorefresh := tmp_b;
End;
{ return the window border header string }
Function tnWindow.GetHeader : string;
Begin
GetHeader := header;
End;
{----------------------------------------------------------------------
put/replace a header string at the top of a bordered window
hdr = header string (top line of window, only if hasframe = true)
hcolor = header line color
hpos = justfication of header string, left, center, or right
----------------------------------------------------------------------}
Procedure tnWindow.PutHeader(hdr : string; hcolor : integer; hpos : tnJustify);
Var
cp,
hx,
len : integer;
att,
mx,my : longint;
Begin
If Hasframe Then Begin
If hdr <> '' Then Begin
header := hdr;
hdrcolor := hcolor;
hdrpos := hpos;
getmaxyx(win,my,mx);
nHline(win,2,1,framecolor,mx-1);
len := mx-2;
hdr := Copy(hdr,1,len);
len := Length(hdr);
Case hpos of
left : hx := 1;
center : hx := (mx - len) div 2;
right : hx := (mx - len) - 1;
End;
mvwaddstr(win,0,hx,StrPCopy(ps,hdr));
cp := nSetColorPair(hcolor);
If nIsBold(hcolor) Then
att := A_BOLD
Else
att := A_NORMAL;
mvwchgat(win,0,hx,len,att,cp,Nil);
End;
End;
End;
{ set the the color of the writable window }
Procedure tnWindow.SetColor(att : integer);
Begin
wbkgd(wn,COLOR_PAIR(nSetColorPair(att)));
If nisbold(att) then
wattr_set(wn,A_BOLD,0,Nil);
wincolor := att;
If visible Then wrefresh(wn);
End;
{ get the writeable window color }
Function tnWindow.GetColor : integer;
Begin
GetColor := wincolor;
End;
{ get the frame color }
Function tnWindow.GetFrameColor : integer;
Begin
GetFrameColor := framecolor;
End;
{ get the header color }
Function tnWindow.GetHeaderColor : integer;
Begin
GetHeaderColor := hdrcolor;
End;
{ frame an un-framed window, or update the frame color of a framed window }
Procedure tnWindow.PutFrame(att : integer);
Var
x,y,
mx,my,
atts : longint;
junk : smallint;
Begin
wbkgd(win,COLOR_PAIR(nSetColorPair(att)));
wattr_get(win,@atts,@junk,nil);
If nisbold(att) then wattr_on(win,atts or A_BOLD,Nil);
box(win,ACS_VLINE,ACS_HLINE);
framecolor := att;
If framecolor = -1 Then framecolor := wincolor;
hasframe := true;
If header <> '' Then PutHeader(header,hdrcolor,hdrpos);
If sub = nil Then Begin
getbegyx(win,y,x);
getmaxyx(win,my,mx);
sub := newwin(my-2,mx-2,y+1,x+1);
If sub <> nil Then Begin
subp := new_panel(sub);
hide_panel(subp);
wbkgd(sub,COLOR_PAIR(nSetColorPair(wincolor)));
If nisbold(wincolor) then wattr_on(sub,A_BOLD,Nil);
scrollok(sub,bool(true));
intrflush(sub,bool(false));
keypad(sub,bool(true));
wn := sub;
End;
End;
touchwin(sub);
If visible Then Begin
wrefresh(win);
wrefresh(sub);
End;
End;
{ move the window }
Procedure tnWindow.Move(x,y : integer);
Begin
move_panel(pan,y-1,x-1);
If subp <> nil Then move_panel(subp,y,x);
If visible Then Begin
update_panels;
doupdate;
End;
End;
Procedure tnWindow.Align(hpos,vpos : tnJustify);
Var
x,y,
bx,by : longint;
Begin
getmaxyx(win,y,x);
getbegyx(win,by,bx);
Case hpos of
none : x := bx;
left : x := 0;
right : x := MaxCols - x;
center : x := (MaxCols - x) div 2;
End;
Case vpos of
none : y := by;
top : y := 0;
bottom : y := MaxRows - y;
center : y := (MaxRows - y) div 2;
End;
move(x+1,y+1);
End;
Procedure tnWindow.Scroll(ln : integer; dir : tnUpDown);
Begin
nScroll(wn,ln,dir);
End;
Procedure tnWindow.GotoXY(x,y : integer);
Begin
tmp_b := dorefresh;
dorefresh := visible;
nGotoXY(wn,x,y);
dorefresh := tmp_b;
End;
Function tnWindow.WhereX : integer;
Begin
WhereX := nWhereX(wn);
End;
Function tnWindow.WhereY : integer;
Begin
WhereY := nWhereY(wn);
End;
Function tnWindow.ReadKey : char;
Begin
ReadKey := nReadKey(wn);
End;
Procedure tnWindow.WriteAC(x,y,att,c : longint);
Begin
tmp_b := dorefresh;
dorefresh := visible;
nWriteAC(wn,x,y,att,c);
dorefresh := tmp_b;
End;
Procedure tnWindow.FWrite(x,y,att,z : integer; s : string);
Begin
tmp_b := dorefresh;
dorefresh := visible;
nFWrite(wn,x,y,att,z,s);
dorefresh := tmp_b;
End;
Procedure tnWindow.DrawBox(LineStyle,x1,y1,x2,y2,att : Integer);
Begin
tmp_b := dorefresh;
dorefresh := visible;
nDrawBox(wn,LineStyle,x1,y1,x2,y2,att);
dorefresh := tmp_b;
End;
Function tnWindow.Rows : integer;
Begin
Rows := nRows(wn);
End;
Function tnWindow.Cols : integer;
Begin
Cols := nCols(wn);
End;
Function tnWindow.GetX : integer;
Var
x,y : longint;
Begin
getbegyx(win,y,x);
GetX := x+1;
End;
Function tnWindow.GetY : integer;
Var
x,y : longint;
Begin
getbegyx(win,y,x);
GetY := y+1;
End;
Function tnWindow.IsFramed : boolean;
Begin
IsFramed := hasframe;
End;
Function tnWindow.IsVisible : boolean;
Begin
IsVisible := visible;
End;
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:String;Var ch : integer) : String;
var
tmp_ec : tnec;
Begin
{ save global ec}
tmp_ec := nEC;
{ init global ec to window ec }
nEC := ec;
Edit := nEdit(wn,x,y,att,z,CursPos,es,ch);
{ re-init window ec to possible changed values }
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
{ init global ec to saved }
nEC := tmp_ec;
End;
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:String;Var ch : Char) : String;
var
i : integer;
Begin
Edit := Edit(x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ overload for longint }
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : integer) : LongInt;
var
tmp_ec : tnec;
Begin
tmp_ec := nEC;
nEC := ec;
Edit := nEdit(wn,x,y,att,z,CursPos,es,ch);
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
nEC := tmp_ec;
End;
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:LongInt;Var ch : Char) : LongInt;
var
i : integer;
Begin
Edit := Edit(x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ overload for real }
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:Real;Var ch : integer) : Real;
var
tmp_ec : tnec;
Begin
tmp_ec := nEC;
nEC := ec;
Edit := nEdit(wn,x,y,att,z,CursPos,es,ch);
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
nEC := tmp_ec;
End;
Function tnWindow.Edit(x,y,att,z,CursPos:Integer;es:Real;Var ch : Char) : Real;
var
i : integer;
Begin
Edit := Edit(x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
Function tnWindow.EditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : real;var esc : boolean) : real;
var
tmp_ec : tnec;
Begin
tmp_ec := nEC;
nEC := ec;
EditNumber := nEditNumber(wn,x,y,att,wid,decm,bgd,initv,minv,maxv,esc);
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
nEC := tmp_ec;
End;
Function tnWindow.EditNumber(x,y,att,wid,decm : integer;bgd : string;initv,minv,maxv : longint;var esc : boolean) : longint;
var
tmp_ec : tnec;
Begin
tmp_ec := nEC;
nEC := ec;
EditNumber := nEditNumber(wn,x,y,att,wid,decm,bgd,initv,minv,maxv,esc);
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
nEC := tmp_ec;
End;
Function tnWindow.EditDate(x,y,att : integer;initv : string;var esc : boolean) : string;
var
tmp_ec : tnec;
Begin
tmp_ec := nEC;
nEC := ec;
EditDate := nEditDate(wn,x,y,att,initv,esc);
ec.ClearMode := nEC.ClearMode;
ec.InsMode := nEC.InsMode;
nEC := tmp_ec;
End;
{--------------------------- tnEC -------------------------------}
Constructor tnEC.Init(ft,ih,im,em,ap : boolean;
s,p : string;
cc : integer;
mp : nChMap);
Begin
ClearMode := ft;
IsHidden := ih;
InsMode := im;
ExitMode := em;
AppendMode := ap;
Special := s;
Picture := p;
CtrlColor := cc;
ChMap := mp;
End;
Destructor tnEC.Done;
Begin
End;
{ Add or replace a character map }
{ Preferred }
Function tnEC.AddChMap(_in,_out : integer) : integer;
Var
i : integer;
Begin
i := 0;
Repeat
inc(i);
Until (i > nMaxChMaps) or (ChMap[i,1] = _in) or (ChMap[i,1] = 0);
If i <= nMaxChMaps Then Begin
AddChMap := i;
ChMap[i,1] := _in;
ChMap[i,2] := _out;
End Else
AddChMap := 0;
End;
{ Add or replace a character map }
{ Obsolete, overloaded }
Function tnEC.AddChMap(mp : nChMapStr) : integer;
Var
i : integer;
_in,_out : integer;
Begin
{ convert to new type }
If mp[1] = #0 Then
_in := ord(mp[2]) * (-1)
Else
_in := ord(mp[1]);
If mp[3] = #0 Then
_out := ord(mp[4]) * (-1)
Else
_out := ord(mp[3]);
AddChMap := AddChMap(_in,_out);
End;
Procedure tnEC.ClrChMap(idx : integer);
Begin
Case idx of
0 : FillChar(ChMap,SizeOf(ChMap),0);
1..nMaxChMaps : Begin
ChMap[idx,1] := 0;
ChMap[idx,2] := 0;
End;
End;
End;
{==========================================================================}
{ set the active window for write(ln), read(ln) }
Procedure nSetActiveWin(win : pwindow);
Begin
SetActiveWn(win);
End;
{----------------------------------------------------------------
Set the refresh toggle.
If true, then all changes to a window are immediate. If false,
then changes appear following the next call to nRefresh.
----------------------------------------------------------------}
Procedure nDoNow(donow : boolean);
Begin
dorefresh := donow;
End;
{-----------------------------------------------------
Set the echo flag.
This determines whether or not, characters are
echoed to the display when entered via the keyboard.
-----------------------------------------------------}
Procedure nEcho(b : boolean);
Begin
Case b of
true : echo;
false: noecho;
End;
isEcho := b;
End;
{ create a new subwindow of stdscr }
Procedure nWindow(var win : pWindow; x,y,x1,y1 : integer);
Begin
nDelWindow(win);
win := subwin(stdscr,y1-y+1,x1-x+1,y-1,x-1);
If win = nil then Exit;
intrflush(win,bool(false));
keypad(win,bool(true));
scrollok(win,bool(true));
SetActiveWn(win);
End;
{ create a new window }
Procedure nNewWindow(var win : pWindow; x,y,x1,y1 : integer);
Begin
nDelWindow(win);
win := newwin(y1-y+1,x1-x+1,y-1,x-1);
If win = nil then Exit;
intrflush(win,bool(false));
keypad(win,bool(true));
scrollok(win,bool(true));
SetActiveWn(win);
End;
{ repaint a window }
Procedure nRefresh(win : pWindow);
Begin
touchwin(win);
wrefresh(win);
End;
{----------------------------------------------
Wait for a key to be pressed, with a timeout.
If a key is pressed, then nKeypressed returns
immediately as true, otherwise it return as
false after the timeout period.
----------------------------------------------}
function nKeypressed(timeout : word) : boolean;
var
fds : TFDSet;
maxFD : longint;
Begin
fpFD_Zero(fds);
maxFD := 1;
{ turn on stdin bit }
If fpFD_IsSet(STDIN,fds)=0 Then
fpFD_Set(STDIN,fds);
{ wait for some input }
If fpSelect(maxFD,@fds,nil,nil,timeout) > 0 Then
nKeypressed := TRUE
Else
nKeypressed := FALSE;
End;
{---------------------------------
read input string from a window
---------------------------------}
Function nReadln(win : pWindow) : string;
Begin
wgetstr(win,ps);
nReadln := StrPas(ps);
End;
{ write a string to a window without refreshing screen }
{ DON'T update PrevWn! }
Procedure nWriteScr(win : pWindow; x,y,att : integer; s : string);
Var
tmp : pwindow;
Begin
tmp := ActiveWn;
tmp_b := doRefresh;
ActiveWn := win;
doRefresh := false;
nFWrite(win,x,y,att,0,s);
ActiveWn := tmp;
doRefresh := tmp_b;
End;
{----------------------------------------------------------
Scroll a window, up or down, a specified number of lines.
lines = number of lines to scroll.
dir = direction, up or down.
----------------------------------------------------------}
Procedure nScroll(win : pWindow; lines : integer; dir : tnUpDown);
Begin
ScrollOk(win,bool(True));
Case dir of
up : lines := abs(lines);
down : lines := abs(lines) * (-1);
End;
wscrl(win,lines);
If doRefresh Then wRefresh(win);
End;
{ draw a colored box, with or without a border }
Procedure nDrawBox(win : pWindow; LineStyle,x1,y1,x2,y2,att : Integer);
Var
sub : pWindow;
x,y : longint;
Begin
getbegyx(win,y,x);
sub := subwin(win,y2-y1+1,x2-x1+1,y+y1-1,x+x1-1);
If sub = nil Then exit;
wbkgd(sub,CursesAtts(att));
werase(sub);
case LineStyle of
1,2 : box(sub, ACS_VLINE, ACS_HLINE);
End;
If doRefresh Then wrefresh(sub);
nDelWindow(sub);
End;
{---------------------------
add a border to a window,
waits for a refresh
---------------------------}
Procedure nFrame(win : pWindow);
Begin
box(win, ACS_VLINE, ACS_HLINE);
End;
{-----------------------------------------------------------
write a string to a window at the current cursor position
followed by a newline
-----------------------------------------------------------}
Procedure nWriteln(win : pWindow; s : string);
Begin
waddstr(win,StrPCopy(ps,s+#10));
If doRefresh Then wrefresh(win);
End;
{ return then number of rows in a window }
Function nRows(win : pWindow) : integer;
Var
x,y : longint;
Begin
getmaxyx(win,y,x);
nRows := y;
End;
{ return then number of columns in a window }
Function nCols(win : pWindow) : integer;
Var
x,y : longint;
Begin
getmaxyx(win,y,x);
nCols := x;
End;
{-------------------------------------------------------
Line drawing characters have to be handled specially.
Use nWriteAC() to write these characters. They cannot
be simply included as characters in a string.
-------------------------------------------------------}
{ returns horizontal line character }
Function nHL : longint;
Begin
nHL := ACS_HLINE;
End;
{ returns vertical line character }
Function nVL : longint;
Begin
nVL := ACS_VLINE;
End;
{ returns upper left corner character }
Function nUL : longint;
Begin
nUL := ACS_ULCORNER;
End;
{ returns lower left corner character }
Function nLL : longint;
Begin
nLL := ACS_LLCORNER;
End;
{ returns upper right corner character }
Function nUR : longint;
Begin
nUR := ACS_URCORNER;
End;
{ returns lower right corner character }
Function nLR : longint;
Begin
nLR := ACS_LRCORNER;
End;
{ returns left tee character }
Function nLT : longint;
Begin
nLT := ACS_LTEE;
End;
{ returns right tee character }
Function nRT : longint;
Begin
nRT := ACS_RTEE;
End;
{ returns top tee character }
Function nTT : longint;
Begin
nTT := ACS_TTEE;
End;
{ returns bottom tee character }
Function nBT : longint;
Begin
nBT := ACS_BTEE;
End;
{ returns plus/cross character }
Function nPL : longint;
Begin
nPL := ACS_PLUS;
End;
{ returns left arrow character }
Function nLA : longint;
Begin
nLA := ACS_LARROW;
End;
{ returns right arrow character }
Function nRA : longint;
Begin
nRA := ACS_RARROW;
End;
{ returns up arrow character }
Function nUA : longint;
Begin
nUA := ACS_UARROW;
End;
{ returns down arrow character }
Function nDA : longint;
Begin
nDA := ACS_DARROW;
End;
{ returns diamond character }
Function nDI : longint;
Begin
nDI := ACS_DIAMOND;
End;
{ returns checkerboard character }
Function nCB : longint;
Begin
nCB := ACS_CKBOARD;
End;
{ returns degree character }
Function nDG : longint;
Begin
nDG := ACS_DEGREE;
End;
{ returns plus/minus character }
Function nPM : longint;
Begin
nPM := ACS_PLMINUS;
End;
{ returns bullet character }
Function nBL : longint;
Begin
nBL := ACS_BULLET;
End;
{ draw a horizontal line with color and a start & end position }
Procedure nHLine(win : pwindow; col,row,attr,x : integer);
var
sub : pwindow;
bx,by : longint;
Begin
getbegyx(win,by,bx);
sub := subwin(win,1,x-col+1,by+row-1,bx+col-1);
If sub = nil Then Exit;
x := getmaxx(sub);
wbkgd(sub,CursesAtts(attr));
mvwhline(sub,0,0,ACS_HLINE,x);
If doRefresh Then wrefresh(sub);
delwin(sub);
End;
{ draw a vertical line with color and a start & end position }
Procedure nVLine(win : pwindow; col,row,attr,y : integer);
var sub : pwindow;
Begin
sub := subwin(win,y-row+1,1,row-1,col-1);
If sub = nil Then Exit;
wbkgd(sub,CursesAtts(attr));
mvwvline(sub,0,0,ACS_VLINE,y);
If doRefresh Then wrefresh(sub);
delwin(sub);
End;
{----------------------------------------------------------------
Write a character from the alternate character set. A normal
value from the alternate character set is larger than $400000.
If the value passed here is 128..255, then we assume it to be
the ordinal value from the IBM extended character set, and try
to map it to curses correctly. If it does not map, then we just
make it an alternate character and hope the output is what the
programmer expected. Note: this will work on the Linux console
just fine, but for other terminals the passed value must match
the termcap definition for the alternate character.
Note: The cursor returns to it's original position.
----------------------------------------------------------------}
Procedure nWriteAC(win : pwindow; x,y : integer; att,acs_char : longint);
var
xx,yy,
cp : longint;
Begin
If acs_char in [0..255] Then Begin
Case acs_char of
176 : acs_char := ACS_CKBOARD;
179 : acs_char := ACS_VLINE;
180 : acs_char := ACS_RTEE;
191 : acs_char := ACS_URCORNER;
192 : acs_char := ACS_LLCORNER;
193 : acs_char := ACS_BTEE;
194 : acs_char := ACS_TTEE;
195 : acs_char := ACS_LTEE;
196 : acs_char := ACS_HLINE;
197 : acs_char := ACS_PLUS;
218 : acs_char := ACS_ULCORNER;
217 : acs_char := ACS_LRCORNER;
241 : acs_char := ACS_PLMINUS;
248 : acs_char := ACS_DEGREE;
249 : acs_char := ACS_BULLET;
else acs_char := acs_char or A_ALTCHARSET;
End;
End;
{ save the current cursor position }
getyx(win,yy,xx);
cp := nSetColorPair(att);
{ write character with current attributes }
mvwaddch(win,y-1,x-1,acs_char);
{ update with new attributes }
If nIsBold(att) Then
att := A_BOLD or A_ALTCHARSET
Else
att := A_NORMAL or A_ALTCHARSET;
mvwchgat(win,y-1,x-1,1,att,cp,Nil);
{ return cursor to saved position }
wmove(win,yy,xx);
If doRefresh Then wrefresh(win);
End;
{-------------------------------------------------------------------
write a string to stdscr with color, without moving the cursor
Col = x start position
Row = y start position
Attrib = color (0..127), note color = (background*16)+foreground
Clear = clear line up to x position
s = string to write
-------------------------------------------------------------------}
Procedure nFWrite(win : pwindow; col,row,attrib : integer; clear : integer; s : string);
var
clr : array [0..255] of char;
cs : string;
sub : pWindow;
x,y,
mx,my,
xx,yy : longint;
ctrl : boolean;
Begin
if Clear > 0 Then Begin
FillChar(clr,SizeOf(clr),' ');
clr[SizeOf(clr)-1] := #0;
If Clear > MaxCols Then Clear := MaxCols;
cs := Copy(StrPas(clr),1,(Clear-Col)-Length(s)+1);
End Else
cs := '';
s := s+cs;
If s = '' Then Exit;
getyx(win,yy,xx);
getbegyx(win,y,x);
getmaxyx(win,my,mx);
If Length(s) > mx Then s := Copy(s,1,mx);
sub := subwin(win,1,Length(s),y+row-1,x+col-1);
If sub = nil Then Exit;
cs := s;
ctrl := false;
{ look for embedded control characters }
For x := 1 to Length(s) Do Begin
If s[x] in [#0..#31] Then Begin
s[x] := ' ';
ctrl := true;
End;
End;
wbkgd(sub,COLOR_PAIR(nSetColorPair(Attrib)));
If nisbold(Attrib) then
wattr_on(sub,A_BOLD,Nil);
mvwaddstr(sub,0,0,StrPCopy(ps,s));
{ highlight the embedded control characters substitutes }
If ctrl Then Begin
{ nEC is always the current edit control object }
If Attrib <> nEC.CtrlColor Then
nWinColor(sub,nEC.CtrlColor)
Else Begin
{ reverse the highlight color if same as current attribute }
bg := nEC.CtrlColor div 16;
fg := nEC.CtrlColor - (bg * 16);
While bg > 7 Do dec(bg,8);
While fg > 7 Do dec(fg,8);
nWinColor(sub,(fg*16)+bg);
End;
For x := 1 to Length(cs) Do Begin
If cs[x] in [#0..#31] Then
mvwaddch(sub,0,x-1,ord(cs[x])+64);
End;
End;
If doRefresh Then wrefresh(sub);
delwin(sub);
wmove(win,yy,xx);
End;
{ overload - no pointer }
Procedure nFWrite(col,row,attrib : integer; clear : integer; s : string);
Begin
nFWrite(ActiveWn,col,row,attrib,clear,s);
End;
{ compatibility for the old function name }
Function nSEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:string;var ch : char) : string;
Var
s : string;
Begin
s := nEdit(win,x,y,att,z,CursPos,es,ch);
nSEdit := s;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
{ String Editor }
Function nEdit(win : pwindow; { window to work in }
x,y, { base x,y coordinates of edit region }
att, { color attribute }
z, { right-most column of edit region }
CursPos:integer; { place cursor on this column at start }
es:string; { initial value of string }
var chv : integer { ordinal value of character typed, }
{ negative for extended keys }
) : string;
Var
ZMode,
AppendMode,
SEditExit : boolean;
prvx,
prvy,
pidx,
pres,
Index : integer;
ts,
hes : string;
isextended : boolean;
ch : char;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure NewString;
BEGIN
nEdit := es;
hes := es;
FillChar(hes[1],Length(hes),'*');
END;
Procedure WriteString;
Var
xx,yy : integer;
Begin
xx := nWhereX(win);
yy := nWhereY(win);
If nEC.IsHidden Then
nFWrite(win,x,y,att,z,hes)
Else
nFWrite(win,x,y,att,z,es);
nGotoXY(win,xx,yy);
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EInsMode;
Begin
nEC.InsMode := (not nEC.InsMode)
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure WriteChar;
var s : string;
Begin
ts := es;
If AppendMode Then Begin
es := es + ' ';
Index := Length(es);
End Else Begin
If nWhereX(win) >= Length(es)+x Then Repeat
es := es + ' ';
Until Length(es)+x-1 = nWhereX(win);
If es = '' Then es := ' ';
If Length(es)+x-1 = nWhereX(win) Then Index := Length(es);
End;
es[Index] := ch;
s := Copy(es,1,Index);
If nCheckPxPicture(s,nEC.Picture,pidx) <> 0 Then Begin
{ no error, picture satisfied }
If (Length(s) > Length(es)) or
((Length(s) = Length(es)) and (s <> es)) Then Begin
{ expanded/changed by picture }
es := s;
End;
If pidx > Index Then Begin
If pidx > Length(es) Then pidx := Length(es);
If pidx > Index Then Index := pidx;
End;
End Else Begin
{ error, did not fit the picture }
Sound(1000);
Delay(50);
NoSound;
es := ts;
Dec(Index);
End;
NewString;
WriteString;
If (Index < z-x+1) or not ZMode Then Begin
Index := Index+1;
nGotoXY(win,x+Index-1,y);
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EInsert; { Insert }
Begin
If Length(es) < Z-X+1 Then Begin
ts := es;
Insert(' ',es,Index);
If nCheckPXPicture(es,nEC.Picture,pidx) = 0 Then Begin
Sound(1000);
Delay(50);
NoSound;
es := ts;
ch := #255;
End;
NewString;
WriteString;
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EDelete; { Delete }
Begin
ts := es;
Delete(es,Index,1);
If nCheckPXPicture(es,nEC.Picture,pidx) = 0 Then Begin
Sound(1000);
Delay(50);
NoSound;
es := ts;
ch := #255;
End;
NewString;
WriteString;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ECtrlEnd; { <CTRL> End }
Begin
Delete(es,Index,Length(es));
NewString;
WriteString;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EHome; { Home }
Begin
Index := 1;
nGotoXY(win,x,y);
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ELeftArrow; { Left Arrow }
Begin
If nWhereX(win) > x Then Begin
dec(Index);
nGotoXY(win,nWhereX(win)-1,nWhereY(win));
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ERightArrow; { Right Arrow }
Begin
If Index < z-x+1 Then Begin
nGotoXY(win,nWhereX(win)+1,nWhereY(win));
Index := Index + 1;
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EEnd; { End }
Begin
Index := Length(es)+1;
If Index > z-x+1 Then Index := Length(es);
If Index < 1 Then Index := 1;
If Index > MaxCols Then Index := MaxCols;
nGotoXY(win,x+(Index-1),y);
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure EBackSpace; { Backspace }
Begin
Index := Index - 1;
If Index < 1 Then Begin
Index := 1;
Exit;
End Else
If nWhereX(win) > x Then nGotoXY(win,nWhereX(win) - 1,nWhereY(win));
Delete(es,Index,1);
NewString;
WriteString;
nGotoXY(win,x+(Index-1),y);
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ETurboBackSpace; { Ctrl/Backspace }
Begin
If Index = 1 Then Exit;
Delete(es,1,Index-1);
NewString;
Index := 1;
If nWhereX(win) > x Then nGotoXY(win,1,nWhereY(win));
WriteString;
nGotoXY(win,x,y);
END;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ECtrlLeftArrow;{ Ctrl Left Arrow }
Begin
If nEC.IsHidden Then Begin
EHome;
Exit;
End;
If es[Index-1] = ' ' Then Index := Index-1;
If es[Index] <> ' ' Then Begin
While (Index > 1) And (es[Index] <> ' ') Do
Index := Index-1;
End Else
If es[Index] = ' ' Then Begin
While (Index > 1) And (es[Index] = ' ') Do
Index := Index-1;
While (Index > 1) And (es[Index] <> ' ') Do
Index := Index-1;
End;
If Index = 1 Then
nGotoXY(win,x,y)
Else Begin
nGotoXY(win,x+Index,y);
Index := Index+1;
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ECtrlRightArrow;{ Ctrl Right Arrow }
Begin
If nEC.IsHidden Then Begin
EEnd;
Exit;
End;
While (Index < Length(es)) And (es[Index] <> ' ') Do
Begin
Index := Index+1;
End;
While (Index < Length(es)) And (es[Index] = ' ') Do
Begin
Index := Index+1;
End;
nGotoXY(win,x+Index-1,y);
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure CheckForWriteChar(embed : boolean);
Begin
If embed or Not (Ch In [#27,#255]) Then Begin
If (ch in [#10,#13]) and (not embed) {and not ControlKey} Then exit;
If nEC.ClearMode Then Begin
es := '';
WriteString;
nGotoXY(win,X,Y);
Index := 1;
WriteChar;
nEC.ClearMode := False;
End Else Begin
If nEC.InsMode Then Begin
EInsert;
WriteChar;
End Else WriteChar;
End;
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ProcessSpecialKey;
begin
If ch = #129 Then ch := #68; { Linux, map Esc/0 to F10 }
chv := ord(ch) * (-1); { set the return value }
Case ch of
#16..#25,
#30..#38,
#44..#50,
#59..#68,
#84..#90,
#92..#113,
#118,
#132,
#72,
#73,
#80,
#81 : Begin SEditExit:=True;Exit;End;
#71 : EHome;
#75 : ELeftArrow;
#77 : ERightArrow;
#79 : EEnd;
#82 : EInsMode;
#83 : EDelete;
#15,
#115 : ECtrlLeftArrow;
#116 : ECtrlRightArrow;
#117 : ECtrlEnd;
End;
End;
{~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
Procedure ProcessNormalKey;
Var
i : integer;
ctrl : boolean;
begin
chv := ord(ch); { set the return value }
For i := 1 to Length(nEC.Special) Do Begin
If ch = nEC.Special[i] Then Begin
SEditExit:=True;
Exit;
End;
End;
ctrl := false;
{ standard control key assignments }
case ch of
#0..#15,
#17..#31 : Begin
nEC.ClearMode := False;
Case ch of
#1 : EHome;
#5 : EEnd;
#2 : ELeftArrow;
#6 : ERightArrow;
#19 : ECtrlLeftArrow;
#4 : ECtrlRightArrow;
#7 : EDelete;
#9 : EInsMode;
#8 : EBackSpace;
#10 : ch := #13;
#13 : Begin
pres := nCheckPxPicture(es,nEC.Picture,pidx);
If pres <> 2 Then Begin
Sound(1000);
Delay(50);
NoSound;
ch := #255;
End;
End;
#27 : If KeyPressed Then Begin
{ covers up a Linux peculiarity where the next }
{ character typed bleeds through with esc/1..9 }
nGotoXY(win,prvx,prvy);
WriteString;
ch := ReadKey;
{ make it a function key }
If ch in ['1'..'9'] Then Begin
ch := Char(Ord(ch)+10);
chv := ord(ch) * (-1);
End Else ch := #27;
SEditExit := true;
End;
End;
Exit;
End;
#16 : Begin
{ embed control characters in the string }
ch := UpCase(ReadKey);
If ch in ['@','2','A'..'Z'] Then Begin
ctrl := true;
If ch = '2' Then ch := '@';
ch := Char(Ord(ch)-64);
chv := ord(ch);
End;
End;
#127 : Begin nEC.ClearMode := False;ETurboBackSpace;Exit;End;
end;
CheckForWriteChar(ctrl);
ch := #0;
end;
{-----------------------------------------------------------------------
Map a keystroke to another character, normal or extended.
The maps are 4 character strings interpreted as 2 sets of character
pairs that represent the following:
1st char - If it is #0 then it is an extended char. Use the 2nd
character to identify.
2nd char - Only used if 1st char is #0.
The first pair of the string is the actual key pressed.
The second pair is what that key should be become.
#0#59 = F1, extended key
#59#0 = ; , normal key
So a map of #0#59#59#0 maps the F1 key to the ; key,
and #0#59#0#60 maps the F1 key to the F2 key,
and #0#59#0#0 maps the F1 key to a null.
Examples:
#0#59#0#60 = map F1 to F2
#1#0#0#59 = map ^A to F1
#0#59#1#0 = map F1 to ^A
#0#59#0#0 = map F1 to ^@ (null)
#0#0#0#59 = map ^@ to F1
#97#0#65#0 = map a to A
}
Procedure MapKey(var ch : char;var eflag : boolean);
Var
i,
cv : integer;
s2 : string[2];
s4 : string[4];
Begin
cv := Ord(ch);
If eflag Then cv := cv * (-1);
i := 0;
{ look for a character map assignment }
Repeat
inc(i);
Until (i > nMaxChMaps) or (nEC.ChMap[i,1] = cv);
{ if found, then re-assign ch to the mapped key }
If i <= nMaxChMaps Then Begin
cv := nEC.ChMap[i,2];
eflag := (cv < 0);
ch := chr(abs(cv));
End;
(*
{ look for a character map assignment }
i := 0;
s4 := #0#0#0#0;
Case eflag of
true : s2 := #0+ch;
false : s2 := ch+#0;
End;
Repeat
inc(i);
Until (i > nMaxChMaps) or (pos(s2,nEC.ChMap[i]) = 1);
{ if found, then re-assign ch to the mapped key }
If i <= nMaxChMaps Then Begin
system.Move(nEC.ChMap[i,1],s4[1],Length(nEC.ChMap[i]));
s2 := Copy(s4,3,2);
eflag := (s2[1] = #0);
Case eflag of
true : ch := s2[2];
false : ch := s2[1];
End;
If ch = #0 Then eflag := false;
End;
*)
End;
{============================================================================}
Begin
SEditExit := nEC.ExitMode;
AppendMode := nEC.AppendMode;
ZMode := z <> 0;
If CursPos > Length(es)+x Then
Index := Length(es)+1 { End Of String }
Else Index := CursPos+1-x; { Inside Of String }
If Not ZMode then z := x+length(es);
Newstring;
WriteString;
nGotoXY(win,CursPos,y);
Repeat
prvx := nWhereX(win); { save for ProcessNormalKey }
prvy := nWhereY(win);
If Not ZMode then z := x+length(es);
ch := ReadKey;
isextended := (ch = #0);
If isextended Then
ch := ReadKey;
MapKey(ch,isextended);
If isextended Then
ProcessSpecialKey
Else
ProcessNormalKey;
Until (ch In [#13,#27]) or SEditExit;
nEC.ClearMode := False;
NewString;
End;{ of nEdit }
{ compatibility for old ch type }
Function nEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:string;var ch : char) : string;
Var i : integer;
Begin
nEdit := nEdit(win,x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ nEdit using currently active window }
Function nEdit(x,y,att,z,CursPos:integer;
es:string;var ch : integer) : string;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,ch);
End;
Function nEdit(x,y,att,z,CursPos:integer;
es:string;var ch : char) : string;
Var i : integer;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,i);
ch := chr(ord(i));
End;
{ overload for longint type }
Function nEdit(x,y,att,z,CursPos:integer;
es:longint;var ch : integer) : longint;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,ch);
End;
Function nEdit(x,y,att,z,CursPos:integer;
es:longint;var ch : char) : longint;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,ch);
End;
{ longint with pointer }
Function nEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:LongInt;var ch : integer) : LongInt;
Var
savpic,
ess : string;
esv,
err : longint;
Begin
Str(es:0,ess);
savpic := nEC.Picture;
If savpic = '' Then nEC.Picture := '[-]#*#';
ess := nEdit(win,x,y,att,z,CursPos,ess,ch);
nEC.Picture := savpic;
val(ess,esv,err);
nEdit := esv;
End;
Function nEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:longint;var ch : char) : longint;
Var i : integer;
Begin
nEdit := nEdit(win,x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ overload for real type }
Function nEdit(x,y,att,z,CursPos:integer;
es:real;var ch : integer) : real;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,ch);
End;
Function nEdit(x,y,att,z,CursPos:integer;
es:real;var ch : char) : real;
Var i : integer;
Begin
nEdit := nEdit(ActiveWn,x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ with pointer }
Function nEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:Real;var ch : integer) : Real;
Var
savpic,
ess : string;
esv : real;
i,
err : Integer;
Begin
Str(es:0:12,ess);
While ess[Length(ess)] = '0' Do Delete(ess,Length(ess),1);
savpic := nEC.Picture;
If savpic = '' Then Begin
Case nDecFmt of
nUS : nEC.Picture := '[+,-]#*#[[.*#][{E,e}[+,-]#[#][#][#]]]';
nEURO : Begin
nEC.Picture := '[+,-]#*#[[;,*#][{E,e}[+,-]#[#][#][#]]]';
For i := 1 to Length(ess) Do
If ess[i] = '.' Then ess[i] := ',';
End;
End;
End;
ess := nEdit(win,x,y,att,z,CursPos,ess,ch);
nEC.Picture := savpic;
For i := 1 to Length(ess) Do If ess[i] = ',' Then ess[i] := '.';
val(ess,esv,err);
nEdit := esv;
End;
Function nEdit(win : pwindow; x,y,att,z,CursPos:integer;
es:real;var ch : char) : real;
Var i : integer;
Begin
nEdit := nEdit(win,x,y,att,z,CursPos,es,i);
ch := chr(abs(i));
End;
{ And now some sugar for Rainer Hantsch! }
{------------------------------------------------------------------------
This is a right justified number editor. As a digit is typed, the
existing number string gets pushed left and the new digit is appended.
If decimal columns are specified, then pressing <space> will enter the
decimal character (. or ,). A background string can be specified that
fills the empty spaces.
------------------------------------------------------------------------}
Function nEditNumber(
win : pwindow;
x, { edit field start column }
y, { edit field start row }
att, { edit field color attribute }
wid, { edit field width }
decm : integer; { number of decimal columns }
bgd : string; { background string -
if bgd = '', then no background
if bgd = a single character, then is used as the
background fill character.
if bgd length is longer than wid, then the entire
bgd string is used as the background.}
initv, { initial value }
minv, { range minimum value }
maxv : real; { range maximum value }
var esc : boolean { if Esc key pressed = true, else = false }
) : real;
Const
{ up to 12 decimal places }
decs : string = '[#][#][#][#][#][#][#][#][#][#][#][#]';
Var
r : real;
s,s1,s2 : string;
i,
e,
bc,
bx : integer;
ch : char;
fill : array [0..255] of char;
tmp_ec : tnEC;
Begin
tmp_ec := nEC;
nEC.ExitMode := true;
nEC.AppendMode := true;
nEC.ClrChMap(0);
nEC.AddChMap(#7#0#0+Char(nKeyDel));
nEC.AddChMap(#8#0#0+Char(nKeyDel));
If decm > (Length(decs) div 3) Then
decm := (Length(decs) div 3);
If decm >= wid Then decm := (wid - 1);
If decm > 0 Then Begin
nEC.Picture := '[-]*#[{.}'+Copy(decs,1,(decm*3))+']';
If nDecFmt = nEURO Then Begin
nEC.Picture[8] := ',';
Insert(';',nEC.Picture,8);
nEC.AddChMap('.'+#0+','+#0);
End;
End Else
nEC.Picture := '[-]*#';
If bgd = '' Then Begin
bgd := ' ';
bc := att;
End Else
bc := nEC.CtrlColor;
If Length(bgd) < wid Then Begin
FillChar(fill,wid,bgd[1]);
fill[wid] := #0;
bgd := StrPas(fill);
End;
bx := x;
If Length(bgd) > wid Then inc(x);
str(initv:wid:decm,s);
While s[1] = ' ' Do Delete(s,1,1);
If Pos('.',s) <> 0 Then
While s[Length(s)] = '0' Do Delete(s,Length(s),1);
If decm = 0 Then Delete(s,Pos('.',s),1);
If nDecFmt = nEURO Then For i := 1 to Length(s) Do
If s[i] = '.' Then s[i] := ',';
Repeat
nFWrite(win,bx,y,bc,bx+Length(bgd)-(x-bx),copy(bgd,1,wid-length(s)+(x-bx)));
If x > bx Then
nFWrite(win,x+wid,y,bc,0,copy(bgd,wid+2,length(bgd)));
s1 := nEdit(win,x+wid-Length(s),y,att,x+wid-1,x+wid-1,s,ch);
s2 := s1;
If nDecFmt = nEURO Then For i := 1 to Length(s2) Do
If s2[i] = ',' Then s2[i] := '.';
val(s2,r,e);
If (s1 = '') or ((e = 0) and (r >= minv) and (r <= maxv)) Then
s := s1
Else
If ch <> #27 then Begin
ch := #0;
Sound(1000);
Delay(50);
NoSound;
End;
nEC.AppendMode := Length(s) < wid;
Until ch in [#13,#27];
esc := (ch = #27);
nEditNumber := r;
nEC := tmp_ec;
End;
{ overload - real, no pointer }
Function nEditNumber(
x,y,att,wid,decm : integer;
bgd : string;
initv,
minv,
maxv : real;
var esc : boolean) : real;
Begin
nEditNumber := nEditNumber(ActiveWn,x,y,att,wid,decm,bgd,initv,minv,maxv,esc);
End;
{ overload for longint }
Function nEditNumber(
win : pwindow;
x,y,att,wid,decm : integer;
bgd : string;
initv,
minv,
maxv : longint;
var esc : boolean) : longint;
Var
r : real;
Begin
r := nEditNumber(win,x,y,att,wid,0,bgd,Real(initv),Real(minv),Real(maxv),esc);
nEditNumber := Trunc(r);
End;
{ overload - longint, no pointer }
Function nEditNumber(
x,y,att,wid,decm : integer;
bgd : string;
initv,
minv,
maxv : longint;
var esc : boolean) : longint;
Var
r : real;
Begin
r := nEditNumber(ActiveWn,x,y,att,wid,0,bgd,Real(initv),Real(minv),Real(maxv),esc);
nEditNumber := Trunc(r);
End;
{ More sugar for Rainer }
{------------------------------------------------------------------------
A date string editor.
------------------------------------------------------------------------}
Function nEditDate(
win : pwindow;
x, { edit field start column }
y, { edit field start row }
att : integer; { edit field color attribute }
initv : string; { initial value }
var esc : boolean { if Esc key pressed = true, else = false }
) : string;
Var
s : string;
i : integer;
ch : char;
tmp_ec : tnEC;
Begin
tmp_ec := nEC;
nEC.InsMode := false;
nEC.ClearMode := false;
nEC.ExitMode := false;
nEC.AppendMode := false;
Case nDecFmt of
nUS : Begin
nEC.Picture := '{#,m,M}{#,m,M}/{#,d,D}{#,d,D}/{#,y,Y}{#,y,Y}{#,y,Y}{#,y,Y}';
s := 'mm/dd/yyyy';
End;
nEURO : Begin
nEC.Picture := '{#,d,D}{#,d,D}/{#,m,M}{#,m,M}/{#,y,Y}{#,y,Y}{#,y,Y}{#,y,Y}';
s := 'dd/mm/yyyy';
End;
End;
If nCheckPxPicture(initv,nEC.Picture,i) <> 0 Then
system.move(initv[1],s[1],Length(initv));
nEC.AddChMap(#7#0#0+Char(nKeyLeft));
nEC.AddChMap(#8#0#0+Char(nKeyLeft));
nEC.AddChMap(#0+Char(nKeyDel)+#0+Char(nKeyLeft));
Repeat
s := nEdit(win,x,y,att,x+9,x,s,ch);
If ch = #13 Then Begin
For i := 1 to Length(s) Do
If s[i] in ['m','d','y'] Then ch := #0;
End;
Until ch in [#13,#27];
esc := (ch = #27);
nEditDate := s;
nEC := tmp_ec;
End;
{ overload - no pointer }
Function nEditDate(x,y,att : integer;initv : string;var esc : boolean) : string;
Begin
nEditDate := nEditDate(ActiveWn,x,y,att,initv,esc);
End;
{ A one-line procedural wrapper }
Procedure nMakeWindow(
var win : tnWindow;
x1,y1,
x2,y2,
ta,ba,ha : integer;
hasframe : boolean;
hdrpos : tnJustify;
hdrtxt : string);
Begin
win.init(x1,y1,x2,y2,ta,hasframe,ba);
If hdrtxt <> '' Then win.PutHeader(hdrtxt,ha,hdrpos);
End;
{ And with a window pointer }
Procedure nMakeWindow(
var win : pnWindow;
x1,y1,
x2,y2,
ta,ba,ha : integer;
hasframe : boolean;
hdrpos : tnJustify;
hdrtxt : string);
Begin
New(win,init(x1,y1,x2,y2,ta,hasframe,ba));
If hdrtxt <> '' Then win^.PutHeader(hdrtxt,ha,hdrpos);
End;
{--------------------------------------------------------------------
Display a message in a centered and framed box. With ack set to
false, the window remains active for further use in the program.
Inputs:
msg = message to display
matt = message color
hdr = header text at frame top
hatt = header/frame color
ack = TRUE : display ftr text and wait for a keypress, then
remove the window.
FALSE: don't display ftr, don't wait for a keypress, and
don't remove the window.
Output:
a nil pointer if ack = true,
a pointer to the tnWindow object if ack = false
--------------------------------------------------------------------}
Function nShowMessage(msg : string;
matt : byte;
hdr : string;
hatt : byte;
ack : boolean) : pnWindow;
const
ftr = 'Press Any Key';
acklns : shortint = 0;
var
i,j,
cr,
wid,
maxwid,
lines : integer;
mwin : pnWindow;
Begin
wid := 0;
maxwid := Length(hdr);
If ack and (Length(ftr) > maxwid) Then
maxwid := Length(ftr);
lines := 1;
{ how many rows does this window need ? }
For i := 1 to Length(msg) Do Begin
inc(wid);
{ let's be consistant! }
If msg[i] = #13 Then msg[i] := #10;
{ either a forced line break or we need to word-wrap }
If (msg[i] = #10) or (wid >= (MaxCols-2)) Then Begin
inc(lines);
j := 0;
If not (msg[i] in [#10,#32]) Then Begin
{ we're in a word, so find the previous space (if any) }
Repeat
inc(j);
Until (j=wid) or ((i-j) <= 0) or (msg[i-j] = #32);
If ((i-j) > 0) and (msg[i-j] = #32) Then Begin
wid := wid-j;
msg[i-j] := #10 { force a line break }
End Else
j := 0;
End;
If wid > maxwid Then maxwid := wid;
wid := j; { either 0 or word-wrap remnent }
End;
End;
If wid > maxwid Then maxwid := wid;
If ack Then acklns := 1 else acklns := 0;
{ make the message window }
New(mwin,Init(1,1,maxwid+2,lines+acklns+2,matt,true,hatt));
With mwin^ Do Begin
PutHeader(hdr,hatt,center);
Align(center,center);
If lines = 1 Then
{ one-liners get centered }
Write(msg:Length(msg)+((maxwid-Length(msg)) div 2))
Else
Write(msg);
Show;
If ack Then Begin
cr := nCursor(cOff);
FWrite(((cols-Length(ftr)) div 2)+1,rows,matt,0,ftr);
{
The following line can be used in place of the line above to place the
footer text in the frame instead of with the message body. Make sure to
keep acklns=0.
nFWrite(win,((ncols(win)-Length(ftr)) div 2)+1,nrows(win),hatt,0,ftr);
}
Readkey;
While Keypressed Do Readkey;
Hide;
nCursor(cr);
End;
End;
If ack Then Begin
Dispose(mwin,Done);
mwin := nil;
End;
nShowMessage := mwin;
End;
{---------------------------------------
Read a character string from a window
win - window to extract info from.
x - starting column.
y - starting row.
n - number of characters to read.
---------------------------------------}
Function nReadScr(win : pWindow; x,y,n : integer) : string;
Var
i,idx : integer;
s : string;
c : longint;
{ array of char/attr values, 4 bytes each, max 256 }
buf : array[0..1023] of char;
p : pchtype;
Begin
s := '';
p := nReadScrStr(win,x,y,n,@buf);
If p <> nil Then Begin
idx := 0;
For i := 1 to n Do Begin
system.move(buf[idx],c,SizeOf(c));
s := s + chr(c and A_CHARTEXT);
inc(idx,SizeOf(c));
End;
End;
nReadScr := s;
End;
{ overload for current window }
Function nReadScr(x,y,n : integer) : string;
Begin
nReadScr := nReadScr(ActiveWn,x,y,n);
End;
Function nReadScrStr(win : pWindow; x,y,n : integer; buf : pchtype) : pchtype;
Var
cx,cy : integer;
mx,my : longint;
Begin
cx := nWhereX(win);
cy := nWhereY(win);
If win <> nil Then Begin
getmaxyx(win,my,mx);
If (x in [1..mx]) and (y in [1..my]) Then Begin
{ n is contrained to the right margin, so no need to range check }
mvwinchnstr(win,y-1,x-1,buf,n);
nGotoXY(win,cx,cy);
End;
End;
nReadScrStr := buf;
End;
{ overload for current window }
Function nReadScrStr(x,y,n : integer; buf : pchtype) : pchtype;
Begin
nReadScrStr := nReadScrStr(ActiveWn,x,y,n,buf);
End;
Function nReadScrColor(win : pWindow; x,y : integer) : integer;
Var
cl,
fg,bg,
cx,cy : integer;
c,cv,
mx,my : longint;
Begin
cl := -1;
cx := nWhereX(win);
cy := nWhereY(win);
If win <> nil Then Begin
getmaxyx(win,my,mx);
If (x in [1..mx]) and (y in [1..my]) Then Begin
c := mvwinch(win,y-1,x-1);
nGotoXY(win,cx,cy);
cv := PAIR_NUMBER(c and A_COLOR);
pair_content(cv,@fg,@bg);
fg := c2ibm(fg);
bg := c2ibm(bg);
cv := (c and A_ATTRIBUTES);
If A_BOLD and cv = A_BOLD Then inc(fg,8);
cl := (bg*16)+fg;
End;
End;
nReadScrColor := cl;
End;
{ overload for current window }
Function nReadScrColor(x,y : integer) : integer;
Begin
nReadScrColor := nReadScrColor(ActiveWn,x,y);
End;
{ write a string with attributes, previously saved with nReadScrStr }
Procedure nWriteScrStr(win : pWindow; x,y : integer; s : pchtype);
Begin
mvwaddchstr(win,y-1,x-1,s);
If doRefresh Then wrefresh(win);
End;
{ overload for current window }
Procedure nWriteScrStr(x,y : integer; s : pchtype);
Begin
mvwaddchstr(ActiveWn,y-1,x-1,s);
If doRefresh Then wrefresh(ActiveWn);
End;
{---------------------------------------
save a rectangular portion of a window
x = start column
y = start row
c = number of columns
r = number of rows
---------------------------------------}
Procedure nGrabScreen(var p : pnScreenBuf; x,y,c,r : integer; win : pWindow);
Var
mx,my : longint;
i,
cx,cy : integer;
prb,trb : pnRowBuf;
Begin
nReleaseScreen(p);
getmaxyx(win,my,mx);
If not (x in [1..mx]) or Not (y in [1..my]) Then Begin
p := nil;
Exit;
End;
cx := nWhereX(win);
cy := nWhereY(win);
New(p);
p^.x := x;
p^.y := y;
p^.n := c;
p^.first := nil;
trb := nil;
For i := 0 to r-1 Do Begin
If (y+i in [1..my]) Then Begin
New(prb);
GetMem(prb^.row,c*SizeOf(chtype));
mvwinchnstr(win,y-1+i,x-1,prb^.row,c);
If trb <> nil Then trb^.Next := prb;
prb^.next := nil;
trb := prb;
If i = 0 Then p^.First := prb;
End;
End;
nGotoXY(win,cx,cy);
End;
{ overload for current window }
Procedure nGrabScreen(var p : pnScreenBuf; x,y,c,r : integer);
Begin
nGrabScreen(p,x,y,c,r,ActiveWn);
End;
{ overload for current full window }
Procedure nGrabScreen(var p : pnScreenBuf);
Var
c,r : longint;
Begin
getmaxyx(ActiveWn,r,c);
nGrabScreen(p,1,1,c,r,ActiveWn);
End;
{-----------------------------------------
restore a window saved with nGrabScreen
p = pointer to the saved buffer
x = start restore to this column
y = start restore to this row
win = restore to this window
-----------------------------------------}
Procedure nPopScreen(p : pnScreenBuf; x,y : integer; win : pWindow);
Var
cx,cy : integer;
mx,my : longint;
pb : pnRowBuf;
Begin
If p = nil Then Exit;
getmaxyx(win,my,mx);
If Not (x in [1..mx]) or Not (y in [1..my]) Then Exit;
dec(x);
cx := nWhereX(win);
cy := nWhereY(win);
pb := p^.First;
While pb <> nil Do Begin
If (pb^.row <> nil) and (y in [1..my]) Then
mvwaddchnstr(win,y-1,x,pb^.row,p^.n);
inc(y);
pb := pb^.next;
End;
nGotoXY(win,cx,cy);
If doRefresh Then wrefresh(win);
End;
{ overload for current window, defined position }
Procedure nPopScreen(p : pnScreenBuf; x,y : integer);
Begin
nPopScreen(p,x,y,ActiveWn);
End;
{ overload for current window, saved position }
Procedure nPopScreen(p : pnScreenBuf);
Begin
If p = nil Then Exit;
nPopScreen(p,p^.x,p^.y,ActiveWn);
End;
{ free up the memory used to store a grabbed screen }
Procedure nReleaseScreen(p : pnScreenBuf);
Var
cur,tmp : pnRowBuf;
Begin
If p = nil Then Exit;
If p^.first <> nil Then Begin
cur := p^.first;
While cur <> nil Do Begin
tmp := cur^.next;
If cur^.row <> nil Then FreeMem(cur^.row,p^.n * SizeOf(chtype));
Dispose(cur);
cur := tmp;
End;
End;
Dispose(p);
End;
{============================== tnMenu ====================================}
{ A one-line procedural wrapper }
Procedure nMakeMenu(
var mnu : tnMenu;
x,y,
_w,_r,_c,
ta,ca,ga,ba,ha : integer;
hasframe : boolean;
hdrpos : tnJustify;
hdrtxt : string);
Begin
mnu.init(x,y,_w,_r,_c,ta,ca,ga,hasframe,ba);
If hdrtxt <> '' Then mnu.PutHeader(hdrtxt,ha,hdrpos);
End;
{ And with a menu pointer }
Procedure nMakeMenu(
var mnu : pnMenu;
x,y,
_w,_r,_c,
ta,ca,ga,ba,ha : integer;
hasframe : boolean;
hdrpos : tnJustify;
hdrtxt : string);
Begin
New(mnu,init(x,y,_w,_r,_c,ta,ca,ga,hasframe,ba));
If hdrtxt <> '' Then mnu^.PutHeader(hdrtxt,ha,hdrpos);
End;
Constructor tnMenu.Init(_x,_y,_w,_r,_c,_tc,_cc,_gc : integer;
_fr : boolean; _fc : integer);
Begin
x := _x;
y := _y;
wid := _w;
r := _r;
c := _c;
tc := _tc;
cc := _cc;
gc := _gc;
framed := _fr;
fc := _fc;
hc := fc;
iidx := 0;
mark := '';
posted := false;
If wid > MaxCols Then wid := MaxCols;
InitWin;
Spin(false);
End;
Destructor tnMenu.Done;
Begin
UnPost;
Clear;
Dispose(win,Done);
End;
Procedure tnMenu.InitWin;
Const
xhgt : shortint = 0;
Begin
If framed Then xhgt := 2 Else xhgt := 0;
New(win,Init(x,y,(x+wid-1),(y+r+xhgt-1),tc,framed,fc));
End;
Procedure tnMenu.Post;
Var
bx,by,
mx,my : longint;
p : pchar;
a : array[0..SizeOf(tnS10)-1] of char;
Begin
{ could already be posted }
UnPost;
{ see if the window size has changed (a new longer item added?) }
getmaxyx(win^.win,my,mx);
If (wid <> mx) Then Begin
getbegyx(win^.win,by,bx);
Dispose(win,Done);
x := bx+1;
y := by+1;
InitWin;
End;
{ create the new menu }
pm := new_menu(@pi);
{ only show item text }
menu_opts_off(pm,O_SHOWDESC);
{ bind the windows }
set_menu_win(pm,win^.win);
set_menu_sub(pm,win^.wn);
{ set the rows and columns }
set_menu_format(pm,r,c);
{ set the colors }
set_menu_fore(pm,CursesAtts(cc));
set_menu_back(pm,CursesAtts(tc));
set_menu_grey(pm,CursesAtts(gc));
p := StrPCopy(a,mark);
set_menu_mark(pm,p);
merr := post_menu(pm);
posted := (merr = E_OK);
Spin(loopon);
End;
Procedure tnMenu.UnPost;
Begin
merr := unpost_menu(pm);
merr := free_menu(pm);
pm := nil;
posted := false;
End;
Procedure tnMenu.Show;
Begin
If not posted Then Post;
win^.Show;
End;
{ Start user interaction loop }
Procedure tnMenu.Start;
Const
select = #13;
cancel = #27;
Var
key : char;
i,cnt,
prev,
savecurs,
xkey : integer;
direction : longint;
Begin
Show;
iidx := 0;
savecurs := nCursor(cOFF);
Repeat
prev := iidx;
win^.Show;
key := readkey;
xkey := 0;
case key of
#0 : xkey := ord(readkey);
^F : xkey := nKeyHome;
^L : xkey := nKeyEnd;
#9,
^N : xkey := nKeyDown;
^P : xkey := nKeyUp;
else menu_driver(pm,ord(key));
end;
case xkey of
nKeyHome : menu_driver(pm,REQ_FIRST_ITEM);
nKeyEnd : menu_driver(pm,REQ_LAST_ITEM);
nKeyRight,
nKeyDown : menu_driver(pm,REQ_NEXT_ITEM);
nKeyLeft,
nKeyUp : menu_driver(pm,REQ_PREV_ITEM);
end;
iidx := item_index(current_item(pm)) + 1;
If (not Selectable(iidx)) and (key <> cancel) Then Begin
cnt := Count;
If cnt > 1 Then Begin
{ temporarily enable spinning }
If not loopon Then
menu_opts_off(pm,O_NONCYCLIC);
{ which way to another item? }
If iidx > prev Then
direction := REQ_NEXT_ITEM
Else
direction := REQ_PREV_ITEM;
Repeat
menu_driver(pm,direction);
i := item_index(current_item(pm)) + 1;
Until Selectable(i) or (i = iidx);
{ reset spin }
Spin(loopon);
{ keep prev honest }
iidx := item_index(current_item(pm)) + 1;
End;
End;
Until key in [select,cancel];
menu_driver(pm,REQ_CLEAR_PATTERN);
If iidx = ERR Then merr := iidx;
If key = cancel Then iidx := 0;
nCursor(savecurs);
End;
Procedure tnMenu.Stop;
Begin
Hide;
UnPost;
End;
Procedure tnMenu.Hide;
Begin
win^.Hide;
End;
Function tnMenu.Wind : pnWindow;
Begin
Wind := win;
End;
Procedure tnMenu.Align(hpos,vpos : tnJustify);
Begin
win^.Align(hpos,vpos);
End;
Procedure tnMenu.Move(_x,_y : integer);
Begin
win^.Move(_x,_y);
End;
Procedure tnMenu.PutHeader(hdr : string; hcolor : integer; hpos : tnJustify);
Begin
win^.PutHeader(hdr,hcolor,hpos);
End;
Procedure tnMenu.Clear;
Var
i : integer;
Begin
UnPost;
For i := 1 to nMAXMENUITEMS Do ClearItem(i);
End;
{ is this menu item selectable }
Function tnMenu.Selectable(idx : integer) : boolean;
Begin
Selectable := IsAssigned(idx) and
((O_SELECTABLE and item_opts(pi[idx])) = O_SELECTABLE);
End;
Function tnMenu.IsValid(idx : integer) : boolean;
Begin
IsValid := ((idx >= 1) and (idx <= nMAXMENUITEMS));
End;
Function tnMenu.IsAssigned(idx : integer) : boolean;
Begin
IsAssigned := IsValid(idx) and (pi[idx] <> nil);
End;
Procedure tnMenu.ClearItem(idx : integer);
Begin
If IsValid(idx) Then Begin
If items[idx] <> nil Then Begin
merr := free_item(pi[idx]);
If merr = E_OK Then Begin
FreeMem(items[idx],StrLen(items[idx]^)+1);
pi[idx] := nil;
items[idx] := nil;
End;
End;
End Else merr := E_BAD_ARGUMENT;
End;
Procedure tnMenu.AddItem(i : integer; s : string);
Const
fwid : shortint = 0;
iwid : shortint = 1;
Var
rl : integer;
sp1,sp2,sp3 : plongint;
Begin
If IsValid(i) Then Begin
sp1:=nil; sp2:=nil; sp3:=nil;
ClearItem(i);
GetMem(items[i],Length(s)+1);
StrPCopy(items[i]^,s);
pi[i] := new_item(pchar(items[i]),nil);
If pi[i] <> Nil Then Begin
merr := E_OK;
{ Expand the window width if necessary. Limit to screen width.
Add possibly 2 for the frame, the item indicator length, and
the item spacing value. }
If framed Then fwid := 2;
if c > 1 Then Begin
If posted Then Begin
{ need a valid pm }
menu_spacing(pm,sp1,sp2,sp3);
iwid := Length(GetMark) + sp3^;
End Else
iwid := Length(GetMark) + 1;
End Else
iwid := 0;
{ required length }
rl := ((Length(s)+iwid)*c)+fwid;
{ expand? }
If rl > wid Then wid := rl;
If wid > MaxCols Then wid := MaxCols;
End Else merr := E_REQUEST_DENIED;
End Else merr := E_BAD_ARGUMENT;
End;
Function tnMenu.Add(s : string) : integer;
Var
i : integer;
Begin
i := 0;
Add := 0;
Repeat
inc(i);
Until (i > nMAXMENUITEMS) or (items[i] = nil);
AddItem(i,s);
If merr = E_OK Then Add := i;
End;
Procedure tnMenu.Insert(idx : integer; s : string);
Begin
If IsValid(idx) Then Begin
ClearItem(nMAXMENUITEMS);
If idx < nMAXMENUITEMS Then Begin
{ shift the pointer list up and keep lists syncronized }
system.Move(pi[idx],pi[idx+1],SizeOf(pnMenuStr)*(nMAXMENUITEMS-idx));
system.Move(items[idx],items[idx+1],SizeOf(pItem)*(nMAXMENUITEMS-idx));
pi[idx] := nil;
items[idx] := nil;
End;
AddItem(idx,s);
End Else merr := E_BAD_ARGUMENT;
End;
Procedure tnMenu.Remove(idx : integer);
Begin
If IsValid(idx) Then Begin
ClearItem(idx);
{ shift the pointer list down and keep lists syncronized }
system.Move(pi[idx+1],pi[idx],SizeOf(pnMenuStr)*(nMAXMENUITEMS-idx));
system.Move(items[idx+1],items[idx],SizeOf(pItem)*(nMAXMENUITEMS-idx));
pi[nMAXMENUITEMS] := nil;
items[nMAXMENUITEMS] := nil;
End Else merr := E_BAD_ARGUMENT;
End;
Procedure tnMenu.Change(idx : integer; s : string);
Begin
AddItem(idx,s);
End;
{ toggle a menu item's selectability }
Procedure tnMenu.Active(idx : integer; b : boolean);
Begin
Case b of
true : item_opts_on(pi[idx],O_SELECTABLE);
false : item_opts_off(pi[idx],O_SELECTABLE);
End;
End;
{ is the item selectable? }
Function tnMenu.IsActive(idx : integer) : boolean;
Begin
IsActive := Selectable(idx);
End;
{ Toggle item looping. Moves to first/last when bottom/top is reached }
Procedure tnMenu.Spin(b : boolean);
Begin
loopon := b;
If posted Then
Case b of
true : menu_opts_off(pm,O_NONCYCLIC);
false : menu_opts_on(pm,O_NONCYCLIC);
End;
End;
{ return most recent error status }
Function tnMenu.Status : integer;
Begin
Status := merr;
End;
Function tnMenu.Index : integer;
Begin
Index := iidx;
End;
Procedure tnMenu.SetIndex(idx : integer);
Begin
If IsValid(idx) and IsAssigned(idx) and Selectable(idx) Then Begin
set_current_item(pm,pi[idx]);
iidx := idx;
End;
End;
Function tnMenu.Count : integer;
Begin
Count := item_count(pm);
End;
Function tnMenu.Rows(_r : integer) : integer;
Begin
Rows := r;
If _r > 0 Then r := _r;
End;
Function tnMenu.Cols(_c : integer) : integer;
Begin
Cols := c;
If _c > 0 Then c := _c;
End;
{ get the item indicator prefix string }
Function tnMenu.GetMark : string;
Begin
If posted Then
GetMark := StrPas(menu_mark(pm))
Else
GetMark := mark;
End;
{ set the item indicator prefix string }
Procedure tnMenu.SetMark(ms : string);
Begin
mark := ms;
End;
Procedure tnMenu.Refresh;
Begin
Post;
Show;
End;
Procedure tnMenu.SetColor(att : byte);
Begin
tc := att;
If posted Then set_menu_back(pm,CursesAtts(tc));
End;
Procedure tnMenu.SetCursorColor(att : byte);
Begin
cc := att;
If posted Then set_menu_fore(pm,CursesAtts(cc));
End;
Procedure tnMenu.SetFrameColor(att : byte);
Begin
fc := att;
If posted Then Wind^.PutFrame(att);
End;
Procedure tnMenu.SetGrayColor(att : byte);
Begin
gc := att;
If posted Then set_menu_grey(pm,CursesAtts(gc));
End;
{----------------------- initialize the unit!------------------------- }
Begin
FillChar(_chmap,SizeOf(_chmap),0);
nEC.Init(false,false,false,false,false,'','',15,_chmap);
{ load the color pairs array with color pair indices (0..63) }
For bg := 0 to 7 Do For fg := 0 to 7 do cp[bg,fg] := (bg*8)+fg;
{ initialize ncurses }
If StartCurses(ActiveWn) Then Begin
{ save pointer to ncurses stdscr }
nscreen := ActiveWn;
{ defaults, crtassign, etc. }
nInit;
{ create the default full screen, non-bordered window object }
nStdScr.Init(1,1,MaxCols,MaxRows,7,false,0);
{ default read/write to stdscr }
ActiveWn := nscreen;
End Else Begin
CursesFailed;
End;
End. { of Unit oCrt }
|