aicwl_3.24.1_73939c9e/sources/gtk-oscilloscope.ads

   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
--                                                                    --
--  package                         Copyright (c)  Dmitry A. Kazakov  --
--     Gtk.Oscilloscope                            Luebeck            --
--  Interface                                      Summer, 2011       --
--                                                                    --
--                                Last revision :  13:15 14 Sep 2019  --
--                                                                    --
--  This  library  is  free software; you can redistribute it and/or  --
--  modify it under the terms of the GNU General Public  License  as  --
--  published by the Free Software Foundation; either version  2  of  --
--  the License, or (at your option) any later version. This library  --
--  is distributed in the hope that it will be useful,  but  WITHOUT  --
--  ANY   WARRANTY;   without   even   the   implied   warranty   of  --
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  --
--  General  Public  License  for  more  details.  You  should  have  --
--  received  a  copy  of  the GNU General Public License along with  --
--  this library; if not, write to  the  Free  Software  Foundation,  --
--  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.    --
--                                                                    --
--  As a special exception, if other files instantiate generics from  --
--  this unit, or you link this unit with other files to produce  an  --
--  executable, this unit does not by  itself  cause  the  resulting  --
--  executable to be covered by the GNU General Public License. This  --
--  exception  does not however invalidate any other reasons why the  --
--  executable file might be covered by the GNU Public License.       --
--____________________________________________________________________--
--
--  The package implements a multichannel osciloscope widget. The widget
--  is rendered asynchronously to  the channel  feed allowing processing
--  a large amount of data. The channels are sorted into groups. A group
--  is controlled by the same amplifier, so that the coresponding graphs
--  are shown in the same scale.
--
with Ada.Real_Time;                 use Ada.Real_Time;
with Ada.Strings;                   use Ada.Strings;
with Cairo;                         use Cairo;
with Cairo.Ellipses;                use Cairo.Ellipses;
with Gdk.Color;                     use Gdk.Color;
with Gdk.Event;                     use Gdk.Event;
with GLib.Values;                   use GLib.Values;
with Gtk.Box;                       use Gtk.Box;
with Gtk.Fixed;                     use Gtk.Fixed;
with Gtk.Grid;                      use Gtk.Grid;
with Gtk.Handlers.References;       use Gtk.Handlers.References;
with Gtk.Layered.Graph_Paper;       use Gtk.Layered.Graph_Paper;
with Gtk.Layered.Line;              use Gtk.Layered.Line;
with Gtk.Layered.Rectangle;         use Gtk.Layered.Rectangle;
with Gtk.Layered.Refresh_Engine;    use Gtk.Layered.Refresh_Engine;
with Gtk.Layered.Waveform.Sweeper;  use Gtk.Layered.Waveform.Sweeper;
with Gtk.Layered.Waveform;          use Gtk.Layered.Waveform;
with Gtk.Layered;                   use Gtk.Layered;
with Gtk.List_Store;                use Gtk.List_Store;
with Gtk.Missed;                    use Gtk.Missed;
with Gtk.Scale;                     use Gtk.Scale;
with Gtk.Widget;                    use Gtk.Widget;
with Pango.Cairo.Fonts;             use Pango.Cairo.Fonts;

with Ada.Calendar;
with Ada.Finalization;
with Gtk.Handlers.Generic_Callback;
with Gtk.Layered.Graph_Paper_Annotation;
with Gtk.Layered.Waveform.Amplifier;
with Gtk.Layered.Waveform.Ring_Data_Buffer;

package Gtk.Oscilloscope is
   use Gtk.Layered.Graph_Paper_Annotation;
   use Gtk.Layered.Waveform.Amplifier;
   use Gtk.Layered.Waveform.Ring_Data_Buffer;
--
-- Selection_Action -- What to do when user selects a square area of
--
   type Selection_Action is
        (  Interactive,
           Zoom_In,
           Zoom_In_Time,
           Zoom_In_Values,
           Zoom_Out,
           Zoom_Out_Time,
           Zoom_Out_Values,
           Copy_Values,
           Copy_Differences,
           Copy_Range,
           User_Action,
           None
        );
--
-- Popup menu items -- Shown on right mouse click
--
   type Dropdown_Items is mod 2**6;
   Grid_Item          : constant Dropdown_Items := 2**0;
   Hold_Release_Item  : constant Dropdown_Items := 2**1;
   Interpolation_Item : constant Dropdown_Items := 2**2;
   Latest_Data_Item   : constant Dropdown_Items := 2**3;
   Snapshot_Item      : constant Dropdown_Items := 2**4;
   Undo_Redo_Item     : constant Dropdown_Items := 2**5;
--
-- Class_Name - Of the widget
--
   Class_Name : constant String := "GtkOscilloscope";
--
-- Amplifier_Type -- The oscilloscope's amplifier
--
--    Left   - The amplifier left of the waveform box
--    Middle - The amplifier on the waveform box
--    Right  - The amplifier right of the waveform box
--
   type Amplifier_Type is (Left, Right, Middle);
--
-- Sweeper_Type -- The oscilloscope's sweeper
--
--    Lower - The sweeper below the waveform box
--    Upper - The sweeper above the waveform box
--
   type Sweeper_Type is (Upper, Lower);
--
-- Channel_Count -- Channel numbers
--
   type Channel_Count is new Natural;
   subtype Channel_Number is Channel_Count range 1..Channel_Count'Last;
--
-- Group_Count -- Group numbers
--
   type Group_Count is new Natural;
   subtype Group_Number is Group_Count range 1..Group_Count'Last;
--
-- Zooming_State -- To save or restore
--
   type Zooming_State is mod 2**2;
   Values_Zooming : constant Zooming_State := 2**0;
   Time_Zooming   : constant Zooming_State := 2**1;
--
-- Snapshot_Format -- The file format used for snapshot
--
   type Snapshot_Format is (No_Snapshot, PDF_Snapshot, SVG_Snapshot);
--
-- Gtk_Oscilloscope -- Oscilloscope
--
   type Gtk_Oscilloscope_Record (<>) is
      new Gtk_Widget_Record with private;
   type Gtk_Oscilloscope is access all Gtk_Oscilloscope_Record'Class;
--
-- Add_Channel -- Create a new channel
--
--    Widget  - The oscilloscope
--  [ Group ] - The group the new channel will belong
--  [ Color ] - The waveform color
--    Mode    - Interpolation mode
--    Left    - Extrapolate to the left
--    Right   - Extrapolate to the right
--    Name    - The waveform name
--    Sweeper - The sweeper type
--    Buffer  - The buffer to use for the channel (created if null)
--
-- When  the  parameter Group is omitted, a new group is created for the
-- new  channel.  When  no color is specified its selected automatically
-- according to the channel number.
--
-- Returns :
--
--    The channel number
--
-- Exception :
--
--    Constraint_Error - Illegal group number or too many channels
--
   function Add_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Group   : Group_Number;
               Color   : Gdk_Color;
               Mode    : Interpolation_Mode := Linear;
               Left    : Boolean := False;
               Right   : Boolean := False;
               Name    : String  := "";
               Sweeper : Sweeper_Type := Lower;
               Buffer  : access
                  Gtk_Wavefrom_Ring_Data_Buffer_Record'Class := null
            )  return Channel_Number;
   function Add_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Group   : Group_Number;
               Mode    : Interpolation_Mode := Linear;
               Left    : Boolean := False;
               Right   : Boolean := False;
               Name    : String  := "";
               Sweeper : Sweeper_Type := Lower;
               Buffer  : access
                  Gtk_Wavefrom_Ring_Data_Buffer_Record'Class := null
            )  return Channel_Number;
   function Add_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Color   : Gdk_Color;
               Mode    : Interpolation_Mode := Linear;
               Left    : Boolean := False;
               Right   : Boolean := False;
               Name    : String  := "";
               Sweeper : Sweeper_Type := Lower;
               Buffer  : access
                  Gtk_Wavefrom_Ring_Data_Buffer_Record'Class := null
            )  return Channel_Number;
   function Add_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Mode    : Interpolation_Mode := Linear;
               Left    : Boolean := False;
               Right   : Boolean := False;
               Name    : String  := "";
               Sweeper : Sweeper_Type := Lower;
               Buffer  : access
                  Gtk_Wavefrom_Ring_Data_Buffer_Record'Class := null
            )  return Channel_Number;
--
-- Drawing_Measurement_Point -- When to measure time period
--
--    Refresh_Period - Refresh period measured at the start of drawing
--    Drawing_Time   - The drawing time
--
   type Drawing_Measurement_Point is (Refresh_Period, Drawing_Time);
--
-- Add_Deviation_Channel -- Create the deviation channel
--
--    Widget   - The oscilloscope
--  [ Group ]  - The group the new channel will belong
--  [ Color ]  - The waveform color
--    Measured - The measurement point
--    Name     - The waveform name
--    Sweeper  - The sweeper type
--
-- These procedures add a deviation channel. The channel is fed  by  the
-- oscilloscope's refresh period. When the parameter Group is omitted, a
-- new group is created for the new channel. When no color is  specified
-- its selected automatically according to the channel number.
--
-- Returns :
--
--    The channel number
--
-- Exception :
--
--    Constraint_Error - Illegal group number or too many channels
--
   function Add_Deviation_Channel
            (  Widget   : not null access Gtk_Oscilloscope_Record;
               Group    : Group_Number;
               Color    : Gdk_Color;
               Measured : Drawing_Measurement_Point := Refresh_Period;
               Name     : String := "";
               Sweeper  : Sweeper_Type := Lower
            )  return Channel_Number;
   function Add_Deviation_Channel
            (  Widget   : not null access Gtk_Oscilloscope_Record;
               Group    : Group_Number;
               Measured : Drawing_Measurement_Point := Refresh_Period;
               Name     : String := "";
               Sweeper  : Sweeper_Type := Lower
            )  return Channel_Number;
   function Add_Deviation_Channel
            (  Widget   : not null access Gtk_Oscilloscope_Record;
               Color    : Gdk_Color;
               Measured : Drawing_Measurement_Point := Refresh_Period;
               Name     : String := "";
               Sweeper  : Sweeper_Type := Lower
            )  return Channel_Number;
   function Add_Deviation_Channel
            (  Widget   : not null access Gtk_Oscilloscope_Record;
               Measured : Drawing_Measurement_Point := Refresh_Period;
               Name     : String := "";
               Sweeper  : Sweeper_Type := Lower
            )  return Channel_Number;
--
-- Add_Group -- Create a new channel group
--
--    Widget    - The oscilloscope
--    Name      - The group name
--    Amplifier - Used with this group, created new if null
--
-- Channels  are  grouped  by  the amplifiers they share. The groups are
-- referenced by their numbers.
--
-- Returns :
--
--    The channel group number
--
-- Exception :
--
--    Constraint_Error - Too many groups
--
   function Add_Group
            (  Widget    : not null access Gtk_Oscilloscope_Record;
               Name      : String := "";
               Amplifier : Gtk_Waveform_Amplifier := null
            )  return Group_Number;
--
-- Add_Shadow_Channel -- Create a new shadow channel
--
--    Widget  - The oscilloscope
--    Channel - The origin channel
--  [ Color ] - The waveform color
--    Name    - The waveform name
--    Sweeper - The sweeper type
--
-- A shadow channel has the same source and the amplifier (group) as the
-- origin. Normally shadow channel has another sweeper, so than both the
-- origin  and  the  source can be superimposed and shifted horizontally
-- relatively  each  other. When Name is an empty string the name of the
-- shadow  channel is the origin name plus " (shadow)". When no color is
-- specified its selected automatically according to the channel number.
--
-- Returns :
--
--    The channel number
--
-- Exception :
--
--    Constraint_Error - Too many channels or wrong channel number
--
   function Add_Shadow_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Channel : Channel_Number;
               Color   : Gdk_Color;
               Name    : String := "";
               Sweeper : Sweeper_Type := Upper
            )  return Channel_Number;
   function Add_Shadow_Channel
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Channel : Channel_Number;
               Name    : String := "";
               Sweeper : Sweeper_Type := Upper
            )  return Channel_Number;
--
-- Capture_{PDF|SVG} -- Capture the contents of the oscilloscope
--
--    Widget - The oscilloscope
--    File   - The file to write
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Capture_PDF
             (  Widget : not null access Gtk_Oscilloscope_Record;
                File   : UTF8_String
             );
   procedure Capture_SVG
             (  Widget : not null access Gtk_Oscilloscope_Record;
                File   : UTF8_String
             );
--
-- Create_Annotation -- Factory operation for axis annotation
--
--    Widget            - The oscilloscope
--    Amplifier/Sweeper - The axis
--
-- Returns :
--
--    The axis annotation object
--
   function Create_Annotation
            (  Widget    : not null access Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return not null access
                      Graph_Paper_Annotation_Layer'Class;
   function Create_Annotation
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return not null access
                      Graph_Paper_Annotation_Layer'Class;
--
-- Delete_Channel -- Delete a channel
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- This procedure deletes a  channel.  Note  that  this  operation  will
-- change the channel numbers greater than Channel.
--
-- Exception :
--
--    Constraint_Error - Wrong channel number
--
   procedure Delete_Channel
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number
             );
--
-- Erase_Redo_Stack -- Empty the redo stack
--
--    Widget - The oscilloscope
--
   procedure Erase_Redo_Stack
             (  Widget : not null access Gtk_Oscilloscope_Record
             );
--
-- Erase_Undo_Buffer -- Emoty the undo stack
--
--    Widget - The oscilloscope
--
   procedure Erase_Undo_Stack
             (  Widget : not null access Gtk_Oscilloscope_Record
             );
--
-- Feed -- Feed data of a channel
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--  [ T ]     - The time, current time, when omitted
--    V       - The value
--
-- These procedure feed the channel with  data.  The  procedure  can  be
-- called  asynchronously  to the GTK task, i.e. from a concurrent task.
-- Note though that there must be only one task feeding the channel.
--
-- Exception :
--
--    Constraint_Error - Wrong channel number
--
   procedure Feed
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                T       : Time;
                V       : GDouble
             );
   procedure Feed
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                T       : Ada.Calendar.Time;
                V       : GDouble
             );
   procedure Feed
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                V       : GDouble
             );
   procedure Feed
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                T       : GDouble;
                V       : GDouble
             );
--
-- Get_Amplifier -- Get amplifier object of a vertical axis
--
--    Widget                  - The oscilloscope
--    Amplifier/Channel/Group - The vertical axis, channel, group
--
-- Returns :
--
--    The amplifier of the axis
--
-- Exceptions :
--
--    Constraint_Error - To group assigned to the axis, wrong channel,
--                       wrong group
--
   function Get_Amplifier
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return not null access
                      Gtk_Waveform_Amplifier_Record'Class;
   function Get_Amplifier
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return not null access
                      Gtk_Waveform_Amplifier_Record'Class;
   function Get_Amplifier
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record;
               Group  : Group_Number
            )  return not null access
                      Gtk_Waveform_Amplifier_Record'Class;
--
-- Get_Auto_Scaling -- Get scaling mode of an amplifier
--
--    Widget          - The oscilloscope
--    Amplifier/Group - The amplifier or channels group
--
-- Returns :
--
--    True if amplifier automatically scales its page to fit the curve
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel group number
--
   function Get_Auto_Scaling
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Boolean;
   function Get_Auto_Scaling
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record;
               Group  : Group_Number
            )  return Boolean;
--
-- Get_Box -- The waveform's box
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The box containing the waveforms (relatively to the widget)
--
   function Get_Box
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Cairo_Box;
--
-- Get_Buffer -- Get the waveform buffer
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The waveform buffer
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Buffer
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return not null access
                      Gtk_Wavefrom_Ring_Data_Buffer_Record'Class;
--
-- Get_Channel_List -- Get the list store containing channel names
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The list of channels
--
   function Get_Channel_List
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Gtk_List_Store;
--
-- Get_Channels_Number -- The number of channels
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The number of channels
--
   function Get_Channels_Number
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Channel_Count;
--
-- Get_Color -- Get the waveform color
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The waveform color
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Color
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Gdk_Color;
--
-- Get_Default_Face -- The default font face to use for axis
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The font face to use when an axis annotation is created
--
   function Get_Default_Face
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Pango_Cairo_Font;
--
-- Get_Enabled_Dropdown_Items -- Get currently enabled menu items
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The items
--
   function Get_Enabled_Dropdown_Items
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Dropdown_Items;
--
-- Get_From -- Get the first time time of the sweeper
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- This function returns the first time of the widget's sweeper
--
-- Returns :
--
--    The first time
--
   function Get_From
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type := Lower
            )  return Time;
   function Get_From
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type := Lower
            )  return Ada.Calendar.Time;
--
-- Get_Frozen -- Get the status of a sweeper
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The true if the sweeper is frozen
--
   function Get_Frozen
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type := Lower
            )  return Boolean;
--
-- Get_Grid_Colors -- Get colors of grid lines
--
--    Widget      - The oscilloscope
--    Major_Color - The color used for major tick lines
--    Minor_Color - The color used for minor tick lines
--
   procedure Get_Grid_Colors
             (  Widget      : not null access constant
                              Gtk_Oscilloscope_Record;
                Major_Color : out Gdk_Color;
                Minor_Color : out Gdk_Color
             );
--
-- Get_Group -- Get the group associated with an amplifier
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type or channel number
--
-- Returns :
--
--    The group number
--
-- Exceptions :
--
--    Constraint_Error - No group assigned or wrong channel
--
   function Get_Group
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Group_Number;
   function Get_Group
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Group_Number;
--
-- Get_Group_List -- Get the list store containing group names
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The list of groups
--
   function Get_Group_List
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Gtk_List_Store;
--
-- Get_Groups_Number -- The number of channel groups
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The number of groups
--
   function Get_Groups_Number
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Group_Count;
--
-- Get_Interpolation_Mode -- Get interpolation mode
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The interpolation mode
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Interpolation_Mode
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Interpolation_Mode;
--
-- Get_Left_Extrapolation_Mode -- Get extrapolation mode to the left
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    True if extrapolated to the left
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Left_Extrapolation_Mode
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Boolean;
--
-- Get_Manual_Sweep -- Allow user to togle sweepers
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    True if user is allowed to freeze/release sweepers
--
   function Get_Manual_Sweep
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Boolean;
--
-- Get_Name -- Get the channel name
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The name of the channel
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Name
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return String;
--
-- Get_Name -- Get the name of a channels group
--
--    Widget - The oscilloscope
--    Group  - The group number
--
-- Returns :
--
--    The name of the group
--
-- Exceptions :
--
--    Constraint_Error - Wrong group number
--
   function Get_Name
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record;
               Group  : Group_Number
            )  return String;
--
-- Get_Offset -- Get the offset to the right margin
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The delay the values appear at the oscilloscope's right margin
--
   function Get_Offset
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Duration;
--
-- Get_Page_Span -- Get the duration visible in the oscilloscope
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The duration between the oscilloscope margins
--
   function Get_Page_Span
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Duration;
--
-- Get_Redo_Stub -- Get the topmost stub of the redo stack
--
--    Widget - The oscilloscope
--    Depth  - The stub depth, 1 is the topmost stub
--
-- Returns :
--
--    The stub name
--
-- Exceptions :
--
--    End_Error - There is no such stub
--
   function Get_Redo_Stub
            (  Widget : not null access Gtk_Oscilloscope_Record;
               Depth  : Positive := 1
            )  return UTF8_String;
--
-- Get_Release_To_Latest -- Get sweeper release behavior
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    True if sweeper when released by user jumps to latest time
--
   function Get_Release_To_Latest
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Boolean;
--
-- Get_Right_Extrapolation_Mode -- Get extrapolation mode to the right
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    True if extrapolated to the right
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Right_Extrapolation_Mode
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Boolean;
--
-- Get_Selection_Mode -- What to do on selection
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The action to perform on selection
--
   function Get_Selection_Mode
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Selection_Action;
--
-- Get_Snapshot_File -- Get snapshot file name
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The name of the file used to store snapshots
--
   function Get_Snapshot_File
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return UTF8_String;
--
-- Get_Snapshot_Format -- Get snapshot file name
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    The format of the file used to store snapshots
--
   function Get_Snapshot_Format
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record
            )  return Snapshot_Format;
--
-- Get_Superscript -- Get subscript usage mode
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    True if subscript digits are allowed when formatting numbers
--
   function Get_Superscript
            (  Widget : not null access constant Gtk_Oscilloscope_Record
            )  return Boolean;
--
-- Get_Sweeper -- Get a oscilloscope's sweeper
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The sweeper
--
   function Get_Sweeper
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return not null access Gtk_Waveform_Sweeper_Record'Class;
--
-- Get_Sweeper -- Get a oscilloscope's sweeper
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The sweeper type of the channel
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Sweeper
            (  Widget  : not null access Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Sweeper_Type;
--
-- Get_Time -- Get current time of a oscilloscope's sweeper
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--  [ X ]     - The horizontal coordinate (right margin by default)
--
-- The parameter X is the horizontal coordinate relative to Widget.
--
-- Returns :
--
--    The time corresponding to the end (right margin) of the page
--
   function Get_Time
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Time;
   function Get_Time
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type;
               X       : GInt
            )  return Time;
   function Get_Time
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Ada.Calendar.Time;
   function Get_Time
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type;
               X       : GInt
            )  return Ada.Calendar.Time;
--
-- Get_Time_Axis -- Get time axis visibility status
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The time axis visibility status
--
   function Get_Time_Axis
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Boolean;
--
-- Get_Time_Axis_Annotation -- Get time axis annotation
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The annotation layer or null
--
   function Get_Time_Axis_Annotation
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return access Graph_Paper_Annotation_Layer'Class;
--
-- Get_Time_Axis_As_Time -- Get time axis rendering mode
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    True if time axis values are rendered as time stamps
--
   function Get_Time_Axis_As_Time
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Boolean;
--
-- Get_Time_Axis_Height -- Get horizontal axis height
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The height of the axis when visibile
--
   function Get_Time_Axis_Height
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Natural;
--
-- Get_Time_Grid -- Get time axis grid
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- The time grid is  a set of vertical lines.  It is shown only when the
-- time axis is visible.
--
-- Returns :
--
--    True if the time grid is shown
--
   function Get_Time_Grid
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Boolean;
--
-- Get_Time_Scale -- Get time scale visibility status
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    True if scale appears when sweeper is frozen
--
   function Get_Time_Scale
             (  Widget  : not null access constant
                          Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type
             )  return Boolean;
--
-- Get_Time_Text_Angle -- Get time axis text angle
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The angle between the text line and x-axis of Cairo coordinates
--
   function Get_Time_Text_Angle
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return GDouble;
--
-- Get_Time_Text_Color -- Get time axis text color
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The text color
--
   function Get_Time_Text_Color
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Gdk_Color;
--
-- Get_Time_Text_Face -- Get time axis text font face
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The font face the result can be null handle is not used
--
   function Get_Time_Text_Face
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Pango_Cairo_Font;
--
-- Get_Time_Text_Height -- Get time axis text height
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The text height
--
   function Get_Time_Text_Height
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return GDouble;
--
-- Get_Time_Text_Horizontal_Alignment -- Get horizontal alignment
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The horizontal alignment of the time text annotation boxes
--
   function Get_Time_Text_Horizontal_Alignment
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Alignment;
--
-- Get_Time_Text_Stretch -- Get time axis text stretch
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The text stretch
--
   function Get_Time_Text_Stretch
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return GDouble;
--
-- Get_Time_Text_Vertical_Alignment -- Get vertical alignment
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- Returns :
--
--    The vertical alignment of the time text annotation boxes
--
   function Get_Time_Text_Vertical_Alignment
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Vertical_Alignment;
--
-- Get_Time_Tooltip_Suffix -- Get the suffix of the value in the tooltip
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--
-- Returns :
--
--    The suffix text
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Time_Tooltip_Suffix
            (  Widget   : not null access constant
                          Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return UTF8_String;
--
-- Get_Time_Tooltip -- Get tooltip time visibility status
--
--    Widget - The oscilloscope
--
-- Returns :
--
--    True when time is represented in the tiooltip text
--
   function Get_Time_Tooltip
             (  Widget : not null access constant
                         Gtk_Oscilloscope_Record
             )  return Boolean;
--
-- Get_To -- Get the last time time of the sweeper
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--
-- This function returns the last time of the widget's sweeper
--
-- Returns :
--
--    The last time
--
   function Get_To
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Time;
   function Get_To
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return Ada.Calendar.Time;
--
-- Get_Tooltip_Annotation -- Get the annotation tooltip text
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--
-- Returns :
--
--    The text introducing the channel appearance in the tooltip
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Tooltip_Annotation
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return UTF8_String;
--
-- Get_Type -- The type of the widget
--
-- Returns :
--
--    The GTK type of the widget
--
   function Get_Type return GType;
--
-- Get_Undo_Stub -- Get the topmost stub of the undo stack
--
--    Widget - The oscilloscope
--    Depth  - The stub depth, 1 is the topmost stub
--
-- Returns :
--
--    The stub name
--
-- Exceptions :
--
--    End_Error - There is no such stub
--
--
   function Get_Undo_Stub
            (  Widget : not null access Gtk_Oscilloscope_Record;
               Depth  : Positive := 1
            )  return UTF8_String;
--
-- Get_Value -- Get value at the vertical axis
--
--    Widget          - The oscilloscope
--    Amplifier/Group - The amplifier type
--    Y               - Vertical coordinate relative to Widget
--
-- Returns :
--
--    The value at Y
--
-- Exceptions :
--
--    Constraint_Error - No group assigned or wrong group
--
   function Get_Value
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type;
               Y         : GInt
            )  return GDouble;
   function Get_Value
            (  Widget : not null access constant
                        Gtk_Oscilloscope_Record;
               Group  : Group_Number;
               Y      : GInt
            )  return GDouble;
--
-- Get_Values_Axis -- Get vertical axis visibility status
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    True if the axis is visibile
--
   function Get_Values_Axis
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Boolean;
--
-- Get_Values_Axis_Annotation -- Get vertical axis annotation
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The annotation layer or null
--
   function Get_Values_Axis_Annotation
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return access Graph_Paper_Annotation_Layer'Class;
--
-- Get_Values_Axis_Width -- Get vertical axis width
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The horizontal space occupied by the axis when visible
--
   function Get_Values_Axis_Width
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Natural;
--
-- Get_Values_Horizontal_Alignment -- Get vertical axis alignment
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The horizontal alignment
--
   function Get_Values_Horizontal_Alignment
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Alignment;
--
-- Get_Values_Grid -- Get vertical axis grid
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- The  value  grid  is a set of horizontal lines. It is shown only when
-- the value axis is visible.
--
-- Returns :
--
--    True if a group is assigned and the horizontal grid is shown
--
   function Get_Values_Grid
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Boolean;
--
-- Get_Values_Scale -- Get values scale visibility status
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    True if scale appears when the amplifier is in non-automatic mode
--
    function Get_Values_Scale
             (  Widget    : not null access constant
                            Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type
             )  return Boolean;
--
-- Get_Values_Text_Angle -- Get vertical axis text angle
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The angle between the text line and x-axis of Cairo coordinates
--
   function Get_Values_Text_Angle
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return GDouble;
--
-- Get_Values_Text_Color -- Get vertical axis text color
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The text color
--
   function Get_Values_Text_Color
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Gdk_Color;
--
-- Get_Values_Text_Face -- Get vertical axis text font face
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The font face the result can be null handle is not used
--
   function Get_Values_Text_Face
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Pango_Cairo_Font;
--
-- Get_Values_Text_Height -- Get vertical axis text height
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The text height
--
   function Get_Values_Text_Height
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return GDouble;
--
-- Get_Values_Text_Stretch -- Get vertical axis text stretch
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    The text stretch
--
   function Get_Values_Text_Stretch
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return GDouble;
--
-- Get_Values_Tooltip_Suffix -- Get the suffix of the value
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--
-- Returns :
--
--    The suffix text
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Values_Tooltip_Suffix
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return UTF8_String;
--
-- Get_Waveform -- Get the waveform of a channel
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    The waveform of the channel
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   function Get_Waveform
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return not null access Waveform_Layer;
--
-- Get_X -- Get horizontal coordinate from time
--
--    Widget          - The oscilloscope
--    Amplifier/Group - The amplifier type
--    Stamp           - The time to convert
--    Crop            - To the nearest margin of the waveform box
--
-- Returns :
--
--    The coordinate of Time
--
-- Exceptions :
--
--    Layout_Error - Not in the waveform box
--
   function Get_X
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type;
               Stamp   : Time;
               Crop    : Boolean := False
            )  return GInt;
   function Get_X
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type;
               Stamp   : Ada.Calendar.Time;
               Crop    : Boolean := False
            )  return GInt;
--
-- Get_Y -- Get vertical coordinate from value
--
--    Widget          - The oscilloscope
--    Amplifier/Group - The amplifier type
--    Value           - The value to convert
--    Crop            - To the nearest margin of the waveform box
--
-- Returns :
--
--    The coordinate of Value
--
-- Exceptions :
--
--    Constraint_Error - Wrong group or no group assigned
--    Layout_Error     - Not in the waveform box
--
   function Get_Y
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type;
               Value     : GDouble;
               Crop      : Boolean := False
            )  return GInt;
   function Get_Y
            (  Widget : not null access constant
                         Gtk_Oscilloscope_Record;
               Group  : Group_Number;
               Value  : GDouble;
               Crop   : Boolean := False
            )  return GInt;
--
-- Gtk_New -- Widget construction
--
--    Widget         - The result
--    Lower_Sweeper  - The sweeper to use under the waveform box
--    Upper_Sweeper  - The sweeper to use above the waveform box
--    Refresh_Engine - The refresh engine or refresh period
--    Background     - The background color
--    Buffer_Size    - The default buffer size allocated for a channel
--    Max_Channels   - The maximal number of channels
--
-- When no sweeper or no refresh engine is specified they are created as
-- necessary.
--
   procedure Gtk_New
             (  Widget         : out Gtk_Oscilloscope;
                Lower_Sweeper  : access
                             Gtk_Waveform_Sweeper_Record'Class := null;
                Upper_Sweeper  : access
                             Gtk_Waveform_Sweeper_Record'Class := null;
                Refresh_Engine : not null access
                             Layered_Refresh_Engine'Class;
                Background     : Gdk_Color := RGB (1.0, 1.0, 1.0);
                Buffer_Size    : Positive  := 1024 * 60;
                Max_Channels   : Channel_Number := 64
             );
   procedure Gtk_New
             (  Widget         : out Gtk_Oscilloscope;
                Lower_Sweeper  : access
                             Gtk_Waveform_Sweeper_Record'Class := null;
                Upper_Sweeper  : access
                             Gtk_Waveform_Sweeper_Record'Class := null;
                Refresh_Period : Duration  := 0.02;
                Background     : Gdk_Color := RGB (1.0, 1.0, 1.0);
                Buffer_Size    : Positive  := 1024 * 60;
                Max_Channels   : Channel_Number := 64
             );
--
-- Has_Group -- Check if amplifier has a group assigned
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--
-- Returns :
--
--    True if the amplifier has a group
--
   function Has_Group
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return Boolean;
--
-- Initialize -- The widget initialization
--
--    Widget         - The widget to initialize
--    Lower_Sweeper  - The sweeper to use under the waveform box
--    Upper_Sweeper  - The sweeper to use above the waveform box
--    Refresh_Engine - The refresh engine
--    Background     - The background color
--    Buffer_Size    - The default buffer size allocated for a channel
--
   procedure Initialize
             (  Widget : not null access Gtk_Oscilloscope_Record'Class;
                Lower_Sweeper  : access
                                    Gtk_Waveform_Sweeper_Record'Class;
                Upper_Sweeper  : access
                                    Gtk_Waveform_Sweeper_Record'Class;
                Refresh_Engine : not null access
                                    Layered_Refresh_Engine'Class;
                Background     : Gdk_Color;
                Buffer_Size    : Positive
             );
   procedure Initialize
             (  Widget : not null access Gtk_Oscilloscope_Record'Class;
                Lower_Sweeper  : access
                                    Gtk_Waveform_Sweeper_Record'Class;
                Upper_Sweeper  : access
                                    Gtk_Waveform_Sweeper_Record'Class;
                Refresh_Period : Duration := 0.2;
                Background     : Gdk_Color;
                Buffer_Size    : Positive
             );
--
-- Is_Visible -- Channel visibility status
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--
-- Returns :
--
--    True if channel is visible
--
   function Is_Visible
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Channel : Channel_Number
            )  return Boolean;
--
-- Move_Channel -- Reorder channels
--
--    Widget     - The oscilloscope
--    Old_Number - The old channel number
--    New_Number - The new channel number
--
-- This  procedure  changes the channel number Old_Number to New_Number.
-- This   operation   also  changes  the numbers  of   channels  between
-- Old_Number and New_Number.
--
-- Exception :
--
--    Constraint_Error - Wrong channel number
--
   procedure Move_Channel
             (  Widget     : not null access Gtk_Oscilloscope_Record;
                Old_Number : Channel_Number;
                New_Number : Channel_Number
             );
--
-- On_Selection -- Action upon selection
--
--    Widget   - The oscilloscope
--    Selected - The rectangular area selected
--
-- This procedure  is  called when  the  user selects a rectangular area
-- of  the  oscilloscope  and  the current  selection  mode  is  set  to
-- User_Action. The default implementation does nothing.
--
   procedure On_Selection
             (  Widget   : not null access Gtk_Oscilloscope_Record;
                Selected : Cairo_Box
             )  is null;
--
-- Push_Stub -- Push stack stub
--
--    Widget - The oscilloscope
--    Name   - Of the stub
--
-- The procedure  pushes  a stub  with  the name  Name onto the the undo
-- stack.  All actions  after the stub can be reverted  using  a pattern
-- that matches Name as the parameter Till in Undo.
--
   procedure Push_Stub
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Name   : UTF8_String
             );
--
-- Push_Undo -- Push zooming state onto the undo stack
--
--    Widget - The oscilloscope
--    State  - What state to save
--
-- The procedure pushes the data  to restore the current state specified
-- onto the the undo stack.
--
   procedure Push_Undo
             (  Widget : not null access Gtk_Oscilloscope_Record;
                State  : Zooming_State := Values_Zooming or Time_Zooming
             );
--
-- Redo -- Repeat zooming change
--
--    Widget - The oscilloscope
--    Till   - Wildcard pattern
--    Stub   - The name of the new stub or empty string
--
-- When Till is empty the procedure repeats one  reverted user action of
-- zooming  stored on  the top of the redo stack.  The top  of the  redo
-- stack is popped. The information to revert this action is pushed onto
-- the undo  stack.  When Till is not empty  the procedure  reverts  all
-- actions until  a stub  action with the  name matched by the  wildcard
-- pattern contained by Till. Additionally when Stub is not empty a stub
-- is put onto the undo stack before the operation.
--
   procedure Redo
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Till   : UTF8_String := "";
                Stub   : UTF8_String := ""
             );
--
-- Set_Auto_Scaling -- Set auto scaling mode
--
--    Widget          - The oscilloscope
--    Amplifier/Group - The amplifier or group
--    Auto            - Scaling mode
--
-- Amplifier automatically  scales  its  page  to  fit  the  curve  when
-- Auto is set true.
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel group number
--
   procedure Set_Auto_Scaling
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Auto      : Boolean
             );
   procedure Set_Auto_Scaling
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Group  : Group_Number;
                Auto   : Boolean
             );
--
-- Set_Default_Face -- Set the default font face to use for axis
--
--    Widget - The oscilloscope
--    Face   - The face to use when an axis annotation is created
--
   procedure Set_Default_Face
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Face   : Pango_Cairo_Font
             );
--
-- Set_Enabled_Dropdown_Items -- Set enabled menu items
--
--    Widget - The oscilloscope
--    Items  - Enabled
--
   procedure Set_Enabled_Dropdown_Items
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Items  : Dropdown_Items
             );
--
-- Set_Extrapolation_Mode -- Channel interpolation mode
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--    Left    - Extrapolate to the left
--    Right   - Extrapolate to the right
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Extrapolation_Mode
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Left    : Boolean;
                Right   : Boolean
             );
--
-- Set_Frequency -- Set the sweeping frequency
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Frames  - The number of frames per second
--
-- This procedure changes the sweeping frequency in frames  (pages)  per
-- second. It is alternative to Set_Page_Span, which explicitly sets the
-- page span.
--
   procedure Set_Frequency
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Frames  : GDouble
             );
--
-- Set_Frozen -- Set frozen state
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Frozen  - Desired state
--
-- When frozen the oscilloscope does not sweep its waveforms.
--
   procedure Set_Frozen
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Frozen  : Boolean
             );
--
-- Set_Grid_Colors -- Set colors of grid lines
--
--    Widget      - The oscilloscope
--    Major_Color - The color used for major tick lines
--    Minor_Color - The color used for minor tick lines
--
   procedure Set_Grid_Colors
             (  Widget      : not null access Gtk_Oscilloscope_Record;
                Major_Color : Gdk_Color;
                Minor_Color : Gdk_Color
             );
--
-- Set_Group -- Change the group assigned to a vertical axis
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Group     - The group of channels
--
-- Exceptions :
--
--    Constraint_Error - Wrong group number
--
   procedure Set_Group
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Group     : Group_Number
             );
--
-- Set_Interpolation_Mode -- Channel interpolation mode
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--    Mode    - The interpolation mode
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Interpolation_Mode
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Mode    : Interpolation_Mode
             );
--
-- Set_Manual_Sweep -- Allow user to toggle sweepers
--
--    Widget - The oscilloscope
--    Enable - True if user is allowed to freeze/release sweepers
--
   procedure Set_Manual_Sweep
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Enable : Boolean
             );
--
-- Set_Page_Span -- Set the duration visible in the oscilloscope
--
--    Widget    - The oscilloscope
--    Sweeper   - The sweeper type
--    Page_Span - The duration between the oscilloscope margins
--
-- The page span determines the frequency of sweeping. Which is the page
-- width / page span.
--
   procedure Set_Page_Span
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Sweeper   : Sweeper_Type;
                Page_Span : Duration
             );
--
-- Set_Preferred_Method -- Set preferred rendering method
--
--    Widget - The oscilloscope
--    Method - The preferred method
--
-- The rendering method  is selected  when the waveform parameters allow
-- its application.
--
   procedure Set_Preferred_Method
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Method : Waveform_Drawing_Method
             );
--
-- Set_Release_To_Latest -- Allow user to toggle sweepers
--
--    Widget - The oscilloscope
--    Enable - If sweepers when released by user jump to latest time
--
   procedure Set_Release_To_Latest
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Enable : Boolean
             );
--
-- Set_Selection_Mode -- Define what to do on selection
--
--    Widget - The oscilloscope
--    Action - The action to perform on selection
--
   procedure Set_Selection_Mode
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Action : Selection_Action
             );
--
-- Set_Snapshot_File -- Set snapshot format and file name
--
--    Widget - The oscilloscope
--    Format - The snapshot format
--    Name   - The file name
--
-- This  procedure  is  used  to  set the format and name of the file to
-- write  the  widget  contents  when the user presses the snapshot menu
-- item.  When  Format  is  set to No_Snapshot or file name is empty, no
-- menu item appears. When file is written snapshot-captured is emitted.
-- The handler may change the file name upon this signal.
--
   procedure Set_Snapshot_File
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Format : Snapshot_Format := No_Snapshot;
                Name   : String := ""
             );
--
-- Set_Superscript -- Set subscript usage mode
--
--    Widget      - The oscilloscope
--    Superscript - True if allowed
--
   procedure Set_Superscript
             (  Widget      : not null access Gtk_Oscilloscope_Record;
                Superscript : Boolean
             );
--
-- Set_Time -- The time at the right margin
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Stamp   - To set
--
   procedure Set_Time
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Stamp   : Time
             );
   procedure Set_Time
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Stamp   : Ada.Calendar.Time
             );
--
-- Set_Time_Axis -- Change time axis visibility status
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Visible - The visibility status
--    As_Time - Use time format for the axis
--
-- The  time  axis  renders  horizontal  values  in  the  time format by
-- default.  When  As_Time  is  set  to  false the horizontal values are
-- rendered as plain numbers.
--
   procedure Set_Time_Axis
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Visible : Boolean;
                As_Time : Boolean := True
             );
--
-- Set_Time_Axis_Height -- Get vertical size of the axis
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Height  - The desired height of the axis when visible
--
   procedure Set_Time_Axis_Height
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Height  : Natural
             );
--
-- Set_Time_Grid -- Change time grid visibility status
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Visible - The visibility status
--
   procedure Set_Time_Grid
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Visible : Boolean
             );
--
-- Set_Time_Scale -- Change time scale visibility status
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Visible - The visibility status
--
-- This procedure changes the visibility status. When set the invisible,
-- the  scale  is  never  shown.  When  set visible it is shown when the
-- corresponding sweeper is frozen. In running mode scale is not shown.
--
   procedure Set_Time_Scale
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Visible : Boolean
             );
--
-- Set_Time_Text_Alignment -- Set time annotation text alignment
--
--    Widget     - The oscilloscope
--    Sweeper    - The sweeper type
--    Horizontal - Horizontal alignment
--    Vertical   - Vertical alignment
--
   procedure Set_Time_Text_Alignment
             (  Widget     : not null access Gtk_Oscilloscope_Record;
                Sweeper    : Sweeper_Type;
                Horizontal : Alignment;
                Vertical   : Vertical_Alignment
             );
--
-- Set_Time_Text_Font -- Set font used for the time axis annotation
--
--    Widget  - The oscilloscope
--    Sweeper - The sweeper type
--    Face    - The font face
--    Height  - Height
--    Stretch - Stretch
--    Color   - Color
--    Angle   - The text angle
--
-- Exceptions :
--
--    Constraint_Error - Illegal parameter
--
   procedure Set_Time_Text_Font
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                Face    : Pango_Cairo_Font;
                Height  : GDouble;
                Stretch : GDouble   := 1.0;
                Color   : Gdk_Color := RGB (0.0, 0.0, 0.0);
                Angle   : GDouble   := 0.0
             );
--
-- Set_Time_Tooltip -- Change tooltip time visibility status
--
--    Widget  - The oscilloscope
--    Visible - The visibility status
--
-- When set True, the time is represented in  the  tiooltip  text  shown
-- when the mouse cursor is hovering above a waveform.
--
   procedure Set_Time_Tooltip
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Visible : Boolean
             );
--
-- Set_Time_Tooltip_Suffix -- Set the suffix of the value in the tooltip
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--    Suffix  - The text to set
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Time_Tooltip_Suffix
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Suffix  : UTF8_String
             );
--
-- Set_Tooltip_Annotation -- Set the tooltip annotation
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--    Text    - The text introducing the channel in the tooltip
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Tooltip_Annotation
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Text    : UTF8_String
             );
--
-- Set_Values_Axis_Alignment -- Get vertical axis alignment
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Horizontal - Horizontal alignment
--    Vertical   - Vertical alignment
--
   procedure Set_Values_Alignment
             (  Widget     : not null access Gtk_Oscilloscope_Record;
                Amplifier  : Amplifier_Type;
                Horizontal : Alignment;
                Vertical   : Vertical_Alignment
             );
--
-- Set_Values_Axis -- Make visible values axis
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Visible   - The visibility status
--
-- Exceptions :
--
--    Constraint_Error - No group assigned
--
   procedure Set_Values_Axis
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Visible   : Boolean
             );
--
-- Set_Values_Axis_Width -- Get vertical axis width
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Width     - The desired width of the axis when visible
--
   procedure Set_Values_Axis_Width
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Width     : Natural
             );
--
-- Set_Values_Grid -- Change time grid visibility status
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Visible   - The visibility status
--
-- Exceptions :
--
--    Constraint_Error - No group assigned
--
   procedure Set_Values_Grid
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Visible   : Boolean
             );
--
-- Set_Values_Scale -- Change values scale visibility status
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Visible   - The visibility status
--
-- This procedure changes the visibility status. When set the invisible,
-- the  scale  is  never  shown.  When  set visible it is shown when the
-- corresponding  amplifier is in non-automatic mode.  In automatic mode
-- scale is not shown.
--
   procedure Set_Values_Scale
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Visible   : Boolean
             );
--
-- Set_Values_Text_Font -- Set font used for the time axis annotation
--
--    Widget    - The oscilloscope
--    Amplifier - The amplifier type
--    Face      - The font face
--    Height    - Height
--    Stretch   - Stretch
--    Color     - Color
--    Angle     - The text angle
--
-- Exceptions :
--
--    Constraint_Error - Illegal parameter
--
   procedure Set_Values_Text_Font
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type;
                Face      : Pango_Cairo_Font;
                Height    : GDouble;
                Stretch   : GDouble   := 1.0;
                Color     : Gdk_Color := RGB (0.0, 0.0, 0.0);
                Angle     : GDouble   := 0.0
             );
--
-- Set_Values_Tooltip_Suffix -- Set the suffix of the value
--
--    Widget  - The oscilloscope
--    Channel - Associated with the indicated value
--    Suffix  - The text to set
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Values_Tooltip_Suffix
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Suffix  : UTF8_String
             );
--
-- Set_Visible -- Set channel visibility status
--
--    Widget  - The oscilloscope
--    Channel - The channel number
--    Visible - The visibility status
--
-- Exceptions :
--
--    Constraint_Error - Wrong channel number
--
   procedure Set_Visible
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Channel : Channel_Number;
                Visible : Boolean
             );
--
-- Undo -- Revert zooming change
--
--    Widget - The oscilloscope
--    Till   - Wildcard pattern
--    Stub   - The name of the new stub or empty
--
-- When Till is empty the  procedure reverts  one user action  caused  a
-- change  of zooming stored on the top  of the  undo stack.  The top of
-- the undo stack  is popped.  The information  to revert this action is
-- pushed onto the redo  stack.  When  Till is not empty  the  procedure
-- reverts all actions until a stub  action with the name matched by the
-- wildcard  pattern contained by Till.  Additionally  when Stub  is not
-- empty a stub is put onto the redo stack before the operation.
--
   procedure Undo
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Till   : UTF8_String := "";
                Stub   : UTF8_String := ""
             );
private
   pragma Inline (Feed);
   pragma Inline (Get_Amplifier);
   pragma Inline (Get_Auto_Scaling);
   pragma Inline (Get_Channels_Number);
   pragma Inline (Get_Color);
   pragma Inline (Get_From);
   pragma Inline (Get_Frozen);
   pragma Inline (Get_Group);
   pragma Inline (Get_Groups_Number);
   pragma Inline (Get_Interpolation_Mode);
   pragma Inline (Get_Name);
   pragma Inline (Get_Offset);
   pragma Inline (Get_Page_Span);
   pragma Inline (Get_Snapshot_File);
   pragma Inline (Get_Snapshot_Format);
   pragma Inline (Get_Superscript);
   pragma Inline (Get_Sweeper);
   pragma Inline (Get_Time);
   pragma Inline (Get_Time_Axis);
   pragma Inline (Get_Time_Axis_As_Time);
   pragma Inline (Get_Time_Scale);
   pragma Inline (Get_Time_Text_Angle);
   pragma Inline (Get_Time_Text_Color);
   pragma Inline (Get_Time_Text_Face);
   pragma Inline (Get_Time_Grid);
   pragma Inline (Get_Time_Text_Height);
   pragma Inline (Get_Time_Text_Horizontal_Alignment);
   pragma Inline (Get_Time_Text_Stretch);
   pragma Inline (Get_Time_Text_Vertical_Alignment);
   pragma Inline (Get_Time_Tooltip);
   pragma Inline (Get_Values_Axis);
   pragma Inline (Get_Values_Axis_Width);
   pragma Inline (Get_Values_Horizontal_Alignment);
   pragma Inline (Get_Values_Grid);
   pragma Inline (Get_To);
   pragma Inline (Is_Visible);

   type Layered_Refresh_Engine_Ptr is access Layered_Refresh_Engine;

   type Channel_Value is (Undefined, Absolute, Difference);
   type Waveform_Layer_Ptr is access all Waveform_Layer;
   type Channel_Data is record
      Waveform     : Waveform_Layer_Ptr;
      Source       : Gtk_Wavefrom_Ring_Data_Buffer;
      Status       : Channel_Value := Undefined;
      Group        : Group_Number;
      Tip_Prefix   : String_Ptr;
      Tip_X_Suffix : String_Ptr;
      Tip_Y_Suffix : String_Ptr;
      Value_1      : Y_Axis;
      Value_2      : Y_Axis;
   end record;
   type Channel_List is
      array (Channel_Number range <>) of aliased Channel_Data;

   type Group is record
      Amplifier : Gtk_Waveform_Amplifier;
   end record;
   type Group_List is array (Group_Number range <>) of Group;
   type Group_List_Ptr is access Group_List;

   type Line_Layer_Ptr is access all Line_Layer;
   type Rectangle_Layer_Ptr is access all Rectangle_Layer;
   type Graph_Paper_Layer_Ptr is access all Graph_Paper_Layer;

   type Graph_Paper_Annotation_Layer_Ptr is
      access all Gtk.Layered.Graph_Paper_Annotation.
                 Graph_Paper_Annotation_Layer'Class;

   type Time_Axis_Data is record
      On         : Boolean := False;
      Grid       : Boolean := False;
      No_Scale   : Boolean := False;
      Width_Set  : Boolean := False;
      Time_Mode  : Boolean := True;
      Sweeper    : Gtk_Waveform_Sweeper;
      Face       : Pango_Cairo_Font;
      Color      : Gdk_Color := RGB (0.0, 0.0, 0.0);
      Angle      : GDouble   := 0.0;
      Height     : GDouble   := 9.0;
      Stretch    : GDouble   := 1.0;
      Offset     : GDouble   := 0.0;
      Width      : GUInt     := 24;
      Channels   : Natural   := 0;
      Justify_X  : Alignment := Center;
      Justify_Y  : Vertical_Alignment := Center;
      Line       : Line_Layer_Ptr;
      Ticks      : Graph_Paper_Layer_Ptr;
      Box        : Gtk_HBox;
      Left_Fill  : Gtk_Fixed;
      Right_Fill : Gtk_Fixed;
      Scale      : Gtk_HScale;
      Texts      : Graph_Paper_Annotation_Layer_Ptr;
   end record;
   type Time_Axis_Data_Ptr is access all Time_Axis_Data;

   type Sweeper_List is array (Sweeper_Type) of aliased Time_Axis_Data;

   type Values_Axis_Data is record
      On        : Boolean := False;
      Grid      : Boolean := False;
      No_Scale  : Boolean := False;
      Width_Set : Boolean := False;
      Group     : Group_Count := 0;
      Face      : Pango_Cairo_Font;
      Color     : Gdk_Color := RGB (0.0, 0.0, 0.0);
      Angle     : GDouble   := 0.0;
      Height    : GDouble   := 9.0;
      Stretch   : GDouble   := 1.0;
      Offset    : GDouble   := 0.0;
      Width     : GUInt     := 50;
      Justify_X : Alignment := Center;
      Justify_Y : Vertical_Alignment := Center;
      Line      : Line_Layer_Ptr;
      Ticks     : Graph_Paper_Layer_Ptr;
      Texts     : Graph_Paper_Annotation_Layer_Ptr;
      Scale            : Gtk_VScale;
      Box              : Gtk_VBox;
      Upper_Fill       : Gtk_Fixed;
      Lower_Fill       : Gtk_Fixed;
      Settings_Changed : Handler_Reference;
      Value_Changed    : Handler_Reference;
   end record;
   type Amplifier_List is array (Amplifier_Type) of Values_Axis_Data;

   type Do_Item;
   type Do_Item_Ptr is access Do_Item'Class;
   type Items_Stack is record
      Actions : Do_Item_Ptr;
      Stubs   : Do_Item_Ptr;
   end record;
   function Get_Stub
            (  Stack : Items_Stack;
               Depth : Positive
            )  return UTF8_String;

   type Selection_State (Size : Group_Number) is record
      Area    : Rectangle_Layer_Ptr;
      Right   : Boolean;
      Below   : Boolean;
      Engaged : Boolean := False;
      Saved   : Boolean := False;
   end record;
   type Selection_State_Ptr is access Selection_State;

   type Gtk_Graphs_Record is new Gtk_Layered_Record with record
      Oscilloscope : Gtk_Oscilloscope;
      Last_Time    : Time := Time_First;
   end record;

   overriding
      procedure Refresh
                (  Widget  : not null access Gtk_Graphs_Record;
                   Context : Cairo_Context
                );
   overriding
      procedure Resized
                (  Widget     : not null access Gtk_Graphs_Record;
                   Allocation : Gtk_Allocation
                );

   type Do_Item is
      abstract new Ada.Finalization.Limited_Controlled with
   record
      First : Boolean     := False;
      Next  : Do_Item_Ptr := null;
   end record;
--
-- Do_It -- Undo zooming
--
--    Item         - The undo item
--    First        - True if first in the sequence
--    Oscilloscope - The oscilloscope
--    Inverse      - The opposite list head
--
   procedure Do_It
             (  Item         : Do_Item;
                First        : in out Boolean;
                Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                Inverse      : access Items_Stack := null
             )  is abstract;
   procedure Delete (List : in out Do_Item_Ptr);
--
-- Do_Auto_Amplifier -- Set auto scaling mode
--
   type Do_Auto_Amplifier is new Do_Item with record
      Amplifier : Gtk_Waveform_Amplifier;
   end record;
   procedure Push_Auto_Amplifier
             (  Amplifier : Gtk_Waveform_Amplifier;
                List      : access Items_Stack;
                First     : in out Boolean
             );
   overriding
      procedure Do_It
                (  Item         : Do_Auto_Amplifier;
                   First        : in out Boolean;
                   Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                   Inverse      : access Items_Stack := null
                );
   overriding
      procedure Finalize (Item : in out Do_Auto_Amplifier);
--
-- Do_Amplifier_Zoom -- Set to fixed size
--
   type Do_Amplifier_Zoom is new Do_Auto_Amplifier with record
      Value     : GDouble;
      Page_Size : GDouble;
   end record;
   procedure Push_Amplifier_Zoom
             (  Amplifier : Gtk_Waveform_Amplifier;
                List      : access Items_Stack;
                First     : in out Boolean
             );
   overriding
      procedure Do_It
                (  Item         : Do_Amplifier_Zoom;
                   First        : in out Boolean;
                   Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                   Inverse      : access Items_Stack := null
                );
--
-- Do_Release_Sweeper -- Set release mode
--
   type Do_Release_Sweeper is new Do_Item with record
      Sweeper : Gtk_Waveform_Sweeper;
   end record;
   procedure Push_Release_Sweeper
             (  Sweeper : Gtk_Waveform_Sweeper;
                List    : access Items_Stack;
                First   : in out Boolean
             );
   overriding
      procedure Do_It
                (  Item         : Do_Release_Sweeper;
                   First        : in out Boolean;
                   Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                   Inverse      : access Items_Stack := null
                );
   overriding
      procedure Finalize (Item : in out Do_Release_Sweeper);
--
-- Do_Sweeper_Zoom -- Set to fixed size
--
   type Do_Sweeper_Zoom is new Do_Release_Sweeper with record
      Time : Ada.Real_Time.Time;
      Page : Duration;
   end record;
   procedure Push_Sweeper_Zoom
             (  Sweeper : Gtk_Waveform_Sweeper;
                List    : access Items_Stack;
                First   : in out Boolean
             );
   overriding
      procedure Do_It
                (  Item         : Do_Sweeper_Zoom;
                   First        : in out Boolean;
                   Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                   Inverse      : access Items_Stack := null
                );
--
-- Do_Stub -- Undo stack stub
--
   type Do_Stub (Length : Natural) is new Do_Item with record
      Stack    : not null access Items_Stack;
      Previous : Do_Item_Ptr;
      Name     : String (1..Length);
   end record;
   procedure Push_Stub
             (  Name  : String;
                List  : access Items_Stack;
                First : in out Boolean
             );
   overriding
      procedure Do_It
                (  Item         : Do_Stub;
                   First        : in out Boolean;
                   Oscilloscope : in out Gtk_Oscilloscope_Record'Class;
                   Inverse      : access Items_Stack := null
                );

   type Gtk_Oscilloscope_Record (Size : Channel_Number) is
      new Gtk_Grid_Record with
   record
      Refresh_Engine : Layered_Refresh_Engine_Ptr;
      Background     : access Rectangle_Layer;
      Proximity      : GDouble          := 15.0;
      Selection_Mode : Selection_Action := Interactive;
      Menu_Enabled   : Dropdown_Items   := Dropdown_Items'Last;
         -- Components
      Layers : not null access Gtk_Graphs_Record :=
               new Gtk_Graphs_Record;
         -- Axes
      Time_Axis     : Sweeper_List;
      Values_Axis   : Amplifier_List;
         -- Shared properties of waveforms
      Buffer_Size   : Positive       := 1024 * 40;
      Line_Cap      : Cairo_Line_Cap := CAIRO_LINE_CAP_BUTT;
      Width         : GDouble        := 1.0;
      Opacity       : Fill_Opacity   := 0.0;
      Widened       : Boolean        := False;
      Show_Time     : Boolean        := True;
      Manual_Sweep  : Boolean        := False;
      Jump_On_Thaw  : Boolean        := False;
      Superscript   : Boolean        := True;
         -- List stores
      Channel_Names : Gtk_List_Store;
      Group_Names   : Gtk_List_Store;
         -- Default font
      Default_Face  : Pango_Cairo_Font :=
                         Create_Pango ("arial unicode ms");
         -- Channels and groups
      Channels_Number : Channel_Count := 0;
      Groups_Number   : Group_Count   := 0;
      Refresh_Period  : Gtk_Wavefrom_Ring_Data_Buffer;
      Drawing_Time    : Gtk_Wavefrom_Ring_Data_Buffer;
      Channels        : Channel_List (1..Size);
      Groups          : Group_List_Ptr;
      Selection       : Selection_State_Ptr;
      Tip_Text        : String (1..2048);
         -- Undo/Redo stacks
      Undo_Stack  : aliased Items_Stack;
      Redo_Stack  : aliased Items_Stack;
         -- Grid parameters
      Major_Color : Gdk_Color := RGB (0.0, 0.0, 0.0);
      Minor_Color : Gdk_Color := RGB (0.5, 0.5, 0.5);
         -- Snapshots
      Format : Snapshot_Format := No_Snapshot;
      File   : String_Ptr;
   end record;

   procedure Fix_Numbers
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Start  : Channel_Number;
                Stop   : Channel_Number
             );
   function Get_Annotation_Height
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type
            )  return GInt;
   function Get_Annotation_Width
            (  Widget    : not null access constant
                           Gtk_Oscilloscope_Record;
               Amplifier : Amplifier_Type
            )  return GInt;

   function Get_X
            (  Widget  : not null access constant
                         Gtk_Oscilloscope_Record;
               Sweeper : Sweeper_Type;
               Stamp   : GDouble;
               Crop    : Boolean
            )  return GInt;

   procedure Change_Selection
             (  Oscilloscope : not null access Gtk_Oscilloscope_Record;
                Point        : Cairo_Tuple
             );
   function Mouse_Event
            (  Oscilloscope : not null access Gtk_Oscilloscope_Record;
               Event : Gdk_Event;
               Hint  : Boolean
            )  return Cairo_Tuple;
   procedure On_Autoscaling_Changed
             (  Amplifier : access Gtk_Waveform_Amplifier_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   function On_Button_Press
            (  Object       : access GObject_Record'Class;
               Event        : Gdk_Event;
               Oscilloscope : Gtk_Oscilloscope
            )  return Boolean;
   function On_Button_Release
            (  Object       : access GObject_Record'Class;
               Event        : Gdk_Event;
               Oscilloscope : Gtk_Oscilloscope
            )  return Boolean;
   procedure On_Cancel_Selection
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Copy_Selection
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Destroy
             (  Object       : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Difference_Selection
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Format_Time
             (  Scale     : not null access Gtk_Scale_Record'Class;
                Arguments : GValue_Array;
                Result    : in out GValue;
                Data      : Time_Axis_Data_Ptr
             );
   procedure On_Freezing_Changed
             (  Sweeper      : access Gtk_Waveform_Sweeper_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Latest
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   function On_Leave
            (  Object       : access GObject_Record'Class;
               Event        : Gdk_Event;
               Oscilloscope : Gtk_Oscilloscope
            )  return Boolean;
   function On_Motion
            (  Object       : access GObject_Record'Class;
               Event        : Gdk_Event;
               Oscilloscope : Gtk_Oscilloscope
            )  return Boolean;
   procedure On_Pause
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Range_Selection
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Redo
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Release
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Snapshot
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Toggle_Grid
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Toggle_Interpolation
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Undo
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Style_Updated
             (  Object       : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_In
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_In_T
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_In_V
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_Out
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_Out_T
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Zoom_Out_V
             (  Menu         : access GObject_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );

   procedure On_Offset_Changed
             (  Sweeper      : access Gtk_Waveform_Sweeper_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure On_Raster_Mode_Changed
             (  Amplifier : access Gtk_Waveform_Amplifier_Record'Class;
                Oscilloscope : Gtk_Oscilloscope
             );
   procedure Restore_State
             (  Widget : not null access Gtk_Oscilloscope_Record
             );
   procedure Save_Amplifier
             (  Widget : not null access Gtk_Oscilloscope_Record;
                Group  : Group_Number;
                First  : in out Boolean
             );
   procedure Save_Sweeper
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                First   : in out Boolean
             );
   procedure Style_Changed_Time_Axis
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type
             );
   procedure Style_Changed_Values_Axis
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type
             );
   procedure Update_Value
             (  Widget : not null access Gtk_Oscilloscope_Record
             );
   procedure Update_Amplifier
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Amplifier_Type
             );
   procedure Zoom_In
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                T1, T2  : Ada.Calendar.Time
             );
   procedure Zoom_In
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Gtk_Waveform_Amplifier;
                V1, V2    : GDouble
             );
   procedure Zoom_Out
             (  Widget  : not null access Gtk_Oscilloscope_Record;
                Sweeper : Sweeper_Type;
                T1, T2  : Ada.Calendar.Time
             );
   procedure Zoom_Out
             (  Widget    : not null access Gtk_Oscilloscope_Record;
                Amplifier : Gtk_Waveform_Amplifier;
                V1, V2    : GDouble
             );

   package Menu_Handlers is
      new Gtk.Handlers.User_Callback
          (  GObject_Record,
             Gtk_Oscilloscope
          );
   package Oscilloscope_Handlers is
      new Gtk.Handlers.User_Return_Callback
          (  GObject_Record,
             Boolean,
             Gtk_Oscilloscope
          );
   package Amplifier_Handlers is
      new Gtk.Handlers.User_Callback
          (  Gtk_Waveform_Amplifier_Record,
             Gtk_Oscilloscope
          );
   package Format_Handlers is
      new Gtk.Handlers.Generic_Callback
          (  Gtk_Scale_Record,
             Time_Axis_Data_Ptr
          );
   package Sweeper_Handlers is
      new Gtk.Handlers.User_Callback
          (  Gtk_Waveform_Sweeper_Record,
             Gtk_Oscilloscope
          );
end Gtk.Oscilloscope;