summaryrefslogtreecommitdiff
path: root/body/fltk-static.adb
blob: 5c2269fd60370d6d9123bf39efbdee819442de92 (plain)
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


--  Programmed by Jedidiah Barber
--  Released into the public domain


with

    Ada.Assertions,
    Ada.Containers.Vectors,
    Ada.Unchecked_Conversion,
    Interfaces.C.Strings,
    System.Address_To_Access_Conversions,
    FLTK.Box_Draw_Marshal,
    FLTK.Label_Draw_Marshal,
    FLTK.Static_Callback_Conversions;

use type

    Interfaces.C.int,
    Interfaces.C.Strings.chars_ptr;


package body FLTK.Static is


    package Chk  renames Ada.Assertions;
    package Conv renames FLTK.Static_Callback_Conversions;




    -----------------
    --  Operators  --
    -----------------

    type File_Mode_Bitmask is mod 2 ** Interfaces.C.int'Size;

    function FMode_To_Bits is new
        Ada.Unchecked_Conversion (File_Mode, File_Mode_Bitmask);

    function Bits_To_FMode is new
        Ada.Unchecked_Conversion (File_Mode_Bitmask, File_Mode);


    function "+"
           (Left, Right : in File_Mode)
        return File_Mode is
    begin
        return Bits_To_FMode (FMode_To_Bits (Left) or FMode_To_Bits (Right));
    end "+";


    function "-"
           (Left, Right : in File_Mode)
        return File_Mode is
    begin
        return Bits_To_FMode (FMode_To_Bits (Left) and not FMode_To_Bits (Right));
    end "-";




    ------------------------
    --  Functions From C  --
    ------------------------

    --  Command Line Arguments  --

    function fl_static_arg
           (C : in     Interfaces.C.int;
            V : in     Storage.Integer_Address;
            I : in out Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_arg, "fl_static_arg");
    pragma Inline (fl_static_arg);

    procedure fl_static_args
           (C : in Interfaces.C.int;
            V : in Storage.Integer_Address);
    pragma Import (C, fl_static_args, "fl_static_args");
    pragma Inline (fl_static_args);

    function fl_static_args2
           (C : in     Interfaces.C.int;
            V : in     Storage.Integer_Address;
            I : in out Interfaces.C.int;
            H : in     Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_args2, "fl_static_args2");
    pragma Inline (fl_static_args2);




    --  Thread Notify  --

    function fl_static_add_awake_handler
           (H, F : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_add_awake_handler, "fl_static_add_awake_handler");
    pragma Inline (fl_static_add_awake_handler);

    function fl_static_get_awake_handler
           (H, F : out Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_get_awake_handler, "fl_static_get_awake_handler");
    pragma Inline (fl_static_get_awake_handler);

    function fl_static_awake2
           (H, F : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_awake2, "fl_static_awake2");
    pragma Inline (fl_static_awake2);

    procedure fl_static_awake
           (M : in Storage.Integer_Address);
    pragma Import (C, fl_static_awake, "fl_static_awake");
    pragma Inline (fl_static_awake);




    --  Pre-Eventloop Callbacks  --

    procedure fl_static_add_check
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_check, "fl_static_add_check");
    pragma Inline (fl_static_add_check);

    function fl_static_has_check
           (H, F : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_has_check, "fl_static_has_check");
    pragma Inline (fl_static_has_check);

    procedure fl_static_remove_check
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_remove_check, "fl_static_remove_check");
    pragma Inline (fl_static_remove_check);




    --  Timer Callbacks  --

    procedure fl_static_add_timeout
           (S    : in Interfaces.C.double;
            H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_timeout, "fl_static_add_timeout");
    pragma Inline (fl_static_add_timeout);

    function fl_static_has_timeout
           (H, F : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_has_timeout, "fl_static_has_timeout");
    pragma Inline (fl_static_has_timeout);

    procedure fl_static_remove_timeout
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_remove_timeout, "fl_static_remove_timeout");
    pragma Inline (fl_static_remove_timeout);

    procedure fl_static_repeat_timeout
           (S    : in Interfaces.C.double;
            H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_repeat_timeout, "fl_static_repeat_timeout");
    pragma Inline (fl_static_repeat_timeout);




    --  Clipboard Callbacks  --

    procedure fl_static_add_clipboard_notify
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_clipboard_notify, "fl_static_add_clipboard_notify");
    pragma Inline (fl_static_add_clipboard_notify);

    procedure fl_static_remove_clipboard_notify
           (H : in Storage.Integer_Address);
    pragma Import (C, fl_static_remove_clipboard_notify, "fl_static_remove_clipboard_notify");
    pragma Inline (fl_static_remove_clipboard_notify);




    --  File Descriptor Waiting Callbacks  --

    procedure fl_static_add_fd
           (D    : in Interfaces.C.int;
            H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_fd, "fl_static_add_fd");
    pragma Inline (fl_static_add_fd);

    procedure fl_static_add_fd2
           (D, M : in Interfaces.C.int;
            H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_fd2, "fl_static_add_fd2");
    pragma Inline (fl_static_add_fd2);

    procedure fl_static_remove_fd
           (D : in Interfaces.C.int);
    pragma Import (C, fl_static_remove_fd, "fl_static_remove_fd");
    pragma Inline (fl_static_remove_fd);

    procedure fl_static_remove_fd2
           (D, M : in Interfaces.C.int);
    pragma Import (C, fl_static_remove_fd2, "fl_static_remove_fd2");
    pragma Inline (fl_static_remove_fd2);




    --  Idle Callbacks  --

    procedure fl_static_add_idle
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_idle, "fl_static_add_idle");
    pragma Inline (fl_static_add_idle);

    function fl_static_has_idle
           (H, F : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_has_idle, "fl_static_has_idle");
    pragma Inline (fl_static_has_idle);

    procedure fl_static_remove_idle
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_remove_idle, "fl_static_remove_idle");
    pragma Inline (fl_static_remove_idle);




    --  System Events  --

    procedure fl_static_add_system_handler
           (H, F : in Storage.Integer_Address);
    pragma Import (C, fl_static_add_system_handler, "fl_static_add_system_handler");
    pragma Inline (fl_static_add_system_handler);




    --  Custom Colors  --

    function fl_static_get_color2
           (C : in Interfaces.C.unsigned)
        return Interfaces.C.unsigned;
    pragma Import (C, fl_static_get_color2, "fl_static_get_color2");
    pragma Inline (fl_static_get_color2);

    procedure fl_static_get_color
           (C       : in     Interfaces.C.unsigned;
            R, G, B :    out Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_get_color, "fl_static_get_color");
    pragma Inline (fl_static_get_color);

    procedure fl_static_set_color2
           (T, F : in Interfaces.C.unsigned);
    pragma Import (C, fl_static_set_color2, "fl_static_set_color2");
    pragma Inline (fl_static_set_color2);

    procedure fl_static_set_color
           (C       : in Interfaces.C.unsigned;
            R, G, B : in Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_set_color, "fl_static_set_color");
    pragma Inline (fl_static_set_color);

    procedure fl_static_free_color
           (C : in Interfaces.C.unsigned;
            B : in Interfaces.C.int);
    pragma Import (C, fl_static_free_color, "fl_static_free_color");
    pragma Inline (fl_static_free_color);

    function fl_static_get_box_color
           (T : in Interfaces.C.unsigned)
        return Interfaces.C.unsigned;
    pragma Import (C, fl_static_get_box_color, "fl_static_get_box_color");
    pragma Inline (fl_static_get_box_color);

    procedure fl_static_set_box_color
           (T : in Interfaces.C.unsigned);
    pragma Import (C, fl_static_set_box_color, "fl_static_set_box_color");
    pragma Inline (fl_static_set_box_color);

    procedure fl_static_foreground
           (R, G, B : in Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_foreground, "fl_static_foreground");
    pragma Inline (fl_static_foreground);

    procedure fl_static_background
           (R, G, B : in Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_background, "fl_static_background");
    pragma Inline (fl_static_background);

    procedure fl_static_background2
           (R, G, B : in Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_background2, "fl_static_background2");
    pragma Inline (fl_static_background2);




    --  Custom Fonts  --

    function fl_static_get_font
           (K : in Interfaces.C.int)
        return Interfaces.C.Strings.chars_ptr;
    pragma Import (C, fl_static_get_font, "fl_static_get_font");
    pragma Inline (fl_static_get_font);

    function fl_static_get_font_name
           (K : in Interfaces.C.int)
        return Interfaces.C.Strings.chars_ptr;
    pragma Import (C, fl_static_get_font_name, "fl_static_get_font_name");
    pragma Inline (fl_static_get_font_name);

    procedure fl_static_set_font
           (T, F : in Interfaces.C.int);
    pragma Import (C, fl_static_set_font, "fl_static_set_font");
    pragma Inline (fl_static_set_font);

    procedure fl_static_set_font2
           (T : in Interfaces.C.int;
            S : in Interfaces.C.Strings.chars_ptr);
    pragma Import (C, fl_static_set_font2, "fl_static_set_font2");
    pragma Inline (fl_static_set_font2);

    function fl_static_get_font_sizes
           (F : in     Interfaces.C.int;
            A :    out Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_static_get_font_sizes, "fl_static_get_font_sizes");
    pragma Inline (fl_static_get_font_sizes);

    function fl_static_font_size_array_get
           (A : in Storage.Integer_Address;
            I : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_font_size_array_get, "fl_static_font_size_array_get");
    pragma Inline (fl_static_font_size_array_get);

    function fl_static_set_fonts
        return Interfaces.C.int;
    pragma Import (C, fl_static_set_fonts, "fl_static_set_fonts");
    pragma Inline (fl_static_set_fonts);




    --  Box_Kind Attributes  --

    function fl_static_box_dh
           (B : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_box_dh, "fl_static_box_dh");
    pragma Inline (fl_static_box_dh);

    function fl_static_box_dw
           (B : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_box_dw, "fl_static_box_dw");
    pragma Inline (fl_static_box_dw);

    function fl_static_box_dx
           (B : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_box_dx, "fl_static_box_dx");
    pragma Inline (fl_static_box_dx);

    function fl_static_box_dy
           (B : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_box_dy, "fl_static_box_dy");
    pragma Inline (fl_static_box_dy);

    function fl_static_get_boxtype
           (T : in Interfaces.C.int)
        return Storage.Integer_Address;
    pragma Import (C, fl_static_get_boxtype, "fl_static_get_boxtype");
    pragma Inline (fl_static_get_boxtype);

    procedure fl_static_set_boxtype
           (T, F : in Interfaces.C.int);
    pragma Import (C, fl_static_set_boxtype, "fl_static_set_boxtype");
    pragma Inline (fl_static_set_boxtype);

    procedure fl_static_set_boxtype2
           (T              : in Interfaces.C.int;
            F              : in Storage.Integer_Address;
            DX, DY, DW, DH : in Interfaces.C.unsigned_char);
    pragma Import (C, fl_static_set_boxtype2, "fl_static_set_boxtype2");
    pragma Inline (fl_static_set_boxtype2);

    function fl_static_draw_box_active
        return Interfaces.C.int;
    pragma Import (C, fl_static_draw_box_active, "fl_static_draw_box_active");
    pragma Inline (fl_static_draw_box_active);




    --  Label_Kind Attributes  --

    procedure fl_static_set_labeltype
           (K    : in Interfaces.C.int;
            D, M : in Storage.Integer_Address);
    pragma Import (C, fl_static_set_labeltype, "fl_static_set_labeltype");
    pragma Inline (fl_static_set_labeltype);




    --  Clipboard / Selection  --

    procedure fl_static_copy
           (T    : in Interfaces.C.char_array;
            L, K : in Interfaces.C.int);
    pragma Import (C, fl_static_copy, "fl_static_copy");
    pragma Inline (fl_static_copy);

    procedure fl_static_paste
           (R : in Storage.Integer_Address;
            S : in Interfaces.C.int);
    pragma Import (C, fl_static_paste, "fl_static_paste");
    pragma Inline (fl_static_paste);

    procedure fl_static_selection
           (O : in Storage.Integer_Address;
            T : in Interfaces.C.char_array;
            L : in Interfaces.C.int);
    pragma Import (C, fl_static_selection, "fl_static_selection");
    pragma Inline (fl_static_selection);

    function fl_static_clipboard_contains
           (K : in Interfaces.C.char_array)
        return Interfaces.C.int;
    pragma Import (C, fl_static_clipboard_contains, "fl_static_clipboard_contains");
    pragma Inline (fl_static_clipboard_contains);




    --  Dragon Drop  --

    function fl_static_dnd
        return Interfaces.C.int;
    pragma Import (C, fl_static_dnd, "fl_static_dnd");
    pragma Inline (fl_static_dnd);

    function fl_static_get_dnd_text_ops
        return Interfaces.C.int;
    pragma Import (C, fl_static_get_dnd_text_ops, "fl_static_get_dnd_text_ops");
    pragma Inline (fl_static_get_dnd_text_ops);

    procedure fl_static_set_dnd_text_ops
           (T : in Interfaces.C.int);
    pragma Import (C, fl_static_set_dnd_text_ops, "fl_static_set_dnd_text_ops");
    pragma Inline (fl_static_set_dnd_text_ops);




    --  Windows  --

    procedure fl_static_default_atclose
           (W, U : in Storage.Integer_Address);
    pragma Import (C, fl_static_default_atclose, "fl_static_default_atclose");
    pragma Inline (fl_static_default_atclose);

    function fl_static_get_first_window
        return Storage.Integer_Address;
    pragma Import (C, fl_static_get_first_window, "fl_static_get_first_window");
    pragma Inline (fl_static_get_first_window);

    procedure fl_static_set_first_window
           (T : in Storage.Integer_Address);
    pragma Import (C, fl_static_set_first_window, "fl_static_set_first_window");
    pragma Inline (fl_static_set_first_window);

    function fl_static_next_window
           (W : in Storage.Integer_Address)
        return Storage.Integer_Address;
    pragma Import (C, fl_static_next_window, "fl_static_next_window");
    pragma Inline (fl_static_next_window);

    function fl_static_modal
        return Storage.Integer_Address;
    pragma Import (C, fl_static_modal, "fl_static_modal");
    pragma Inline (fl_static_modal);




    --  Queue  --

    function fl_static_readqueue
        return Storage.Integer_Address;
    pragma Import (C, fl_static_readqueue, "fl_static_readqueue");
    pragma Inline (fl_static_readqueue);




    --  Schemes  --

    function fl_static_get_scheme
        return Interfaces.C.Strings.chars_ptr;
    pragma Import (C, fl_static_get_scheme, "fl_static_get_scheme");
    pragma Inline (fl_static_get_scheme);

    procedure fl_static_set_scheme
           (S : in Interfaces.C.char_array);
    pragma Import (C, fl_static_set_scheme, "fl_static_set_scheme");
    pragma Inline (fl_static_set_scheme);

    function fl_static_is_scheme
           (S : in Interfaces.C.char_array)
        return Interfaces.C.int;
    pragma Import (C, fl_static_is_scheme, "fl_static_is_scheme");
    pragma Inline (fl_static_is_scheme);




    --  Library Options  --

    function fl_static_get_option
           (O : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_static_get_option, "fl_static_get_option");
    pragma Inline (fl_static_get_option);

    procedure fl_static_set_option
           (O, T : in Interfaces.C.int);
    pragma Import (C, fl_static_set_option, "fl_static_set_option");
    pragma Inline (fl_static_set_option);




    --  Scrollbars  --

    function fl_static_get_scrollbar_size
        return Interfaces.C.int;
    pragma Import (C, fl_static_get_scrollbar_size, "fl_static_get_scrollbar_size");
    pragma Inline (fl_static_get_scrollbar_size);

    procedure fl_static_set_scrollbar_size
           (S : in Interfaces.C.int);
    pragma Import (C, fl_static_set_scrollbar_size, "fl_static_set_scrollbar_size");
    pragma Inline (fl_static_set_scrollbar_size);




    --  User Data  --

    package Widget_Convert is new System.Address_To_Access_Conversions
        (FLTK.Widgets.Widget'Class);
    package Window_Convert is new System.Address_To_Access_Conversions
        (FLTK.Widgets.Groups.Windows.Window'Class);

    function fl_widget_get_user_data
           (W : in Storage.Integer_Address)
        return Storage.Integer_Address;
    pragma Import (C, fl_widget_get_user_data, "fl_widget_get_user_data");




    ----------------------
    --  Callback Hooks  --
    ----------------------

    Current_Args_Handler : Args_Handler;

    function Args_Hook
           (C : in     Interfaces.C.int;
            V : in     Storage.Integer_Address;
            I : in out Interfaces.C.int)
        return Interfaces.C.int;
    pragma Convention (C, Args_Hook);

    function Args_Hook
           (C : in     Interfaces.C.int;
            V : in     Storage.Integer_Address;
            I : in out Interfaces.C.int)
        return Interfaces.C.int
    is
        Result : Natural;
    begin
        Result := Current_Args_Handler (Positive (I));
        I := I + Interfaces.C.int (Result);
        return Interfaces.C.int (Result);
    exception
    when Constraint_Error => raise Internal_FLTK_Error with
        "Args_Handler callback was supplied unexpected int i value of " &
        Interfaces.C.int'Image (I);
    end Args_Hook;


    procedure Awake_Hook
           (U : in Storage.Integer_Address);
    pragma Convention (C, Awake_Hook);

    procedure Awake_Hook
           (U : in Storage.Integer_Address) is
    begin
        if U /= Null_Pointer then
            Conv.To_Awake_Access (U).all;
        end if;
    end Awake_Hook;


    procedure Timeout_Hook
           (U : in Storage.Integer_Address);
    pragma Convention (C, Timeout_Hook);

    procedure Timeout_Hook
           (U : in Storage.Integer_Address) is
    begin
        Conv.To_Timeout_Access (U).all;
    end Timeout_Hook;


    --  This is handled on the Ada side because otherwise there would be
    --  no way to specify which callback to remove in FLTK once one was
    --  added. This is because Fl::remove_clipboard_notify does not pay
    --  attention to the void * data. This hook is passed during package init.
    package Clipboard_Notify_Vectors is new Ada.Containers.Vectors
       (Index_Type   => Positive,
        Element_Type => Clipboard_Notify_Handler);

    Current_Clip_Notes : Clipboard_Notify_Vectors.Vector;

    procedure Clipboard_Notify_Hook
           (S : in Interfaces.C.int;
            U : in Storage.Integer_Address);
    pragma Convention (C, Clipboard_Notify_Hook);

    procedure Clipboard_Notify_Hook
           (S : in Interfaces.C.int;
            U : in Storage.Integer_Address) is
    begin
        pragma Assert (S in
            Buffer_Kind'Pos (Buffer_Kind'First) .. Buffer_Kind'Pos (Buffer_Kind'Last));
        for Call of Current_Clip_Notes loop
            Call.all (Buffer_Kind'Val (S));
        end loop;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Clipboard_Notify_Hook was passed unexpected Buffer_Kind int value of " &
        Interfaces.C.int'Image (S);
    end Clipboard_Notify_Hook;


    procedure FD_Hook
           (FD : in Interfaces.C.int;
            U  : in Storage.Integer_Address);
    pragma Convention (C, FD_Hook);

    procedure FD_Hook
           (FD : in Interfaces.C.int;
            U  : in Storage.Integer_Address) is
    begin
        Conv.To_File_Access (U).all (File_Descriptor (FD));
    end FD_Hook;


    procedure Idle_Hook
           (U : in Storage.Integer_Address);
    pragma Convention (C, Idle_Hook);

    procedure Idle_Hook
           (U : in Storage.Integer_Address) is
    begin
        Conv.To_Idle_Access (U).all;
    end Idle_Hook;




    -------------------
    --  Destructors  --
    -------------------

    procedure Finalize
           (This : in out FLTK_Static_Final_Controller) is
    begin
        FLTK.Args_Marshal.Free_Argv (The_Argv);
        for Override of Font_Overrides loop
            Interfaces.C.Strings.Free (Override);
        end loop;
        fl_static_remove_clipboard_notify (Storage.To_Integer (Clipboard_Notify_Hook'Address));
    end Finalize;




    -----------------------
    --  API Subprograms  --
    -----------------------

    --  Command Line Arguments  --

    function Parse_Arg
           (Index : in Positive)
        return Natural
    is
        Count : Interfaces.C.int := Interfaces.C.int (Index);
    begin
        return Natural (fl_static_arg
           (The_Argv'Length,
            Storage.To_Integer (The_Argv (The_Argv'First)'Address),
            Count));
    end Parse_Arg;


    procedure Parse_Args is
    begin
        fl_static_args (The_Argv'Length, Storage.To_Integer (The_Argv (The_Argv'First)'Address));
    end Parse_Args;


    procedure Parse_Args
           (Count :    out Natural;
            Func  : in     Args_Handler := null)
    is
        My_Count : Interfaces.C.int := 1;
        Result   : Interfaces.C.int;
    begin
        Current_Args_Handler := Func;
        Result := fl_static_args2
           (The_Argv'Length,
            Storage.To_Integer (The_Argv (The_Argv'First)'Address),
            My_Count,
            (if Func = null then Null_Pointer else Storage.To_Integer (Args_Hook'Address)));
        Count := Integer (My_Count) - 1;
        if Result = 0 then
            raise Argument_Error with
                "Fl::args could not recognise switch at argument number " &
                Interfaces.C.int'Image (My_Count);
        else
            pragma Assert (Result > 0);
        end if;
    exception
    when Constraint_Error => raise Internal_FLTK_Error with
        "Fl::args produced unexpected i parameter of " & Interfaces.C.int'Image (My_Count);
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Fl::args returned unexpected int value of " & Interfaces.C.int'Image (Result);
    end Parse_Args;




    --  Thread Notify  --

    procedure Add_Awake_Handler
           (Func : in Awake_Handler)
    is
        Result : Interfaces.C.int := fl_static_add_awake_handler
           (Storage.To_Integer (Awake_Hook'Address),
            Conv.To_Address (Func));
    begin
        pragma Assert (Result = 0);
    exception
    when Chk.Assertion_Error =>
        if Result = -1 then
            raise Tasking_Error with
                "Fl::add_awake_handler_ failed to register Awake_Handler callback";
        else
            raise Internal_FLTK_Error with
                "Fl::add_awake_handler_ returned unexpected int value of " &
                Interfaces.C.int'Image (Result);
        end if;
    end Add_Awake_Handler;


    function Get_Awake_Handler
        return Awake_Handler
    is
        Hook, Func : Storage.Integer_Address;
        Result : Interfaces.C.int := fl_static_get_awake_handler (Hook, Func);
    begin
        pragma Assert (Result = 0);
        return Conv.To_Awake_Access (Func);
    exception
    when Chk.Assertion_Error =>
        if Result = -1 then
            raise Tasking_Error with
                "Fl::get_awake_handler_ invoked without prior awake setup";
        else
            raise Internal_FLTK_Error with
                "Fl::get_awake_handler_ returned unexpected int value of " &
                Interfaces.C.int'Image (Result);
        end if;
    end Get_Awake_Handler;


    procedure Awake
           (Func : in Awake_Handler)
    is
        Result : Interfaces.C.int := fl_static_awake2
           (Storage.To_Integer (Awake_Hook'Address),
            Conv.To_Address (Func));
    begin
        pragma Assert (Result = 0);
    exception
    when Chk.Assertion_Error =>
        if Result = -1 then
            raise Tasking_Error with "Fl::awake failed to register Awake_Handler callback";
        else
            raise Internal_FLTK_Error with "Fl::awake returned unexpected int value of " &
                Interfaces.C.int'Image (Result);
        end if;
    end Awake;


    procedure Awake is
    begin
        fl_static_awake (Null_Pointer);
    end Awake;




    --  Pre-Eventloop Callbacks  --

    procedure Add_Check
           (Func : in not null Timeout_Handler) is
    begin
        fl_static_add_check
           (Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func)));
    end Add_Check;


    function Has_Check
           (Func : in not null Timeout_Handler)
        return Boolean is
    begin
        return fl_static_has_check
           (Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func))) /= 0;
    end Has_Check;


    procedure Remove_Check
           (Func : in not null Timeout_Handler) is
    begin
        fl_static_remove_check
           (Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func)));
    end Remove_Check;




    --  Timer Callbacks  --

    procedure Add_Timeout
           (Seconds : in          Long_Float;
            Func    : in not null Timeout_Handler) is
    begin
        fl_static_add_timeout
           (Interfaces.C.double (Seconds),
            Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func)));
    end Add_Timeout;


    function Has_Timeout
           (Func : in not null Timeout_Handler)
        return Boolean is
    begin
        return fl_static_has_timeout
           (Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func))) /= 0;
    end Has_Timeout;


    procedure Remove_Timeout
           (Func : in not null Timeout_Handler) is
    begin
        fl_static_remove_timeout
           (Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func)));
    end Remove_Timeout;


    procedure Repeat_Timeout
           (Seconds : in          Long_Float;
            Func    : in not null Timeout_Handler) is
    begin
        fl_static_repeat_timeout
           (Interfaces.C.double (Seconds),
            Storage.To_Integer (Timeout_Hook'Address),
            Conv.To_Address (Timeout_Handler'(Func)));
    end Repeat_Timeout;




    --  Clipboard Callbacks  --

    procedure Add_Clipboard_Notify
           (Func : in not null Clipboard_Notify_Handler) is
    begin
        Current_Clip_Notes.Append (Func);
    end Add_Clipboard_Notify;


    procedure Remove_Clipboard_Notify
           (Func : in not null Clipboard_Notify_Handler) is
    begin
        for Index in reverse Current_Clip_Notes.First_Index .. Current_Clip_Notes.Last_Index loop
            if Current_Clip_Notes (Index) = Func then
                Current_Clip_Notes.Delete (Index);
                return;
            end if;
        end loop;
    end Remove_Clipboard_Notify;




    --  File Descriptor Waiting Callbacks  --

    procedure Add_File_Descriptor
           (FD   : in          File_Descriptor;
            Func : in not null File_Handler) is
    begin
        fl_static_add_fd
           (Interfaces.C.int (FD),
            Storage.To_Integer (FD_Hook'Address),
            Conv.To_Address (Func));
    end Add_File_Descriptor;


    procedure Add_File_Descriptor
           (FD   : in          File_Descriptor;
            Mode : in          File_Mode;
            Func : in not null File_Handler) is
    begin
        fl_static_add_fd2
           (Interfaces.C.int (FD),
            FMode_To_Cint (Mode),
            Storage.To_Integer (FD_Hook'Address),
            Conv.To_Address (Func));
    end Add_File_Descriptor;


    procedure Remove_File_Descriptor
           (FD : in File_Descriptor) is
    begin
        fl_static_remove_fd (Interfaces.C.int (FD));
    end Remove_File_Descriptor;


    procedure Remove_File_Descriptor
           (FD   : in File_Descriptor;
            Mode : in File_Mode) is
    begin
        fl_static_remove_fd2 (Interfaces.C.int (FD), FMode_To_Cint (Mode));
    end Remove_File_Descriptor;




    --  Idle Callbacks  --

    procedure Add_Idle
           (Func : in not null Idle_Handler) is
    begin
        fl_static_add_idle
           (Storage.To_Integer (Idle_Hook'Address),
            Conv.To_Address (Idle_Handler'(Func)));
    end Add_Idle;


    function Has_Idle
           (Func : in not null Idle_Handler)
        return Boolean is
    begin
        return fl_static_has_idle
           (Storage.To_Integer (Idle_Hook'Address),
            Conv.To_Address (Idle_Handler'(Func))) /= 0;
    end Has_Idle;


    procedure Remove_Idle
           (Func : in not null Idle_Handler) is
    begin
        fl_static_remove_idle
           (Storage.To_Integer (Idle_Hook'Address),
            Conv.To_Address (Idle_Handler'(Func)));
    end Remove_Idle;




    --  Custom Colors  --

    function Get_Color
           (From : in Color)
        return Color is
    begin
        return Color (fl_static_get_color2 (Interfaces.C.unsigned (From)));
    end Get_Color;


    procedure Get_Color
           (From    : in     Color;
            R, G, B :    out Color_Component) is
    begin
        fl_static_get_color
           (Interfaces.C.unsigned (From),
            Interfaces.C.unsigned_char (R),
            Interfaces.C.unsigned_char (G),
            Interfaces.C.unsigned_char (B));
    end Get_Color;


    procedure Set_Color
           (Target, Source : in Color) is
    begin
        fl_static_set_color2
           (Interfaces.C.unsigned (Target),
            Interfaces.C.unsigned (Source));
    end Set_Color;


    procedure Set_Color
           (Target  : in Color;
            R, G, B : in Color_Component) is
    begin
        fl_static_set_color
           (Interfaces.C.unsigned (Target),
            Interfaces.C.unsigned_char (R),
            Interfaces.C.unsigned_char (G),
            Interfaces.C.unsigned_char (B));
    end Set_Color;


    procedure Free_Color
           (Value   : in Color;
            Overlay : in Boolean := False) is
    begin
        fl_static_free_color
           (Interfaces.C.unsigned (Value),
            Boolean'Pos (Overlay));
    end Free_Color;


    function Get_Box_Color
           (Tone : in Color)
        return Color is
    begin
        return Color (fl_static_get_box_color (Interfaces.C.unsigned (Tone)));
    end Get_Box_Color;


    procedure Set_Box_Color
           (Tone : in Color) is
    begin
        fl_static_set_box_color (Interfaces.C.unsigned (Tone));
    end Set_Box_Color;


    procedure Set_Foreground
           (R, G, B : in Color_Component) is
    begin
        fl_static_foreground
           (Interfaces.C.unsigned_char (R),
            Interfaces.C.unsigned_char (G),
            Interfaces.C.unsigned_char (B));
    end Set_Foreground;


    procedure Set_Background
           (R, G, B : in Color_Component) is
    begin
        fl_static_background
           (Interfaces.C.unsigned_char (R),
            Interfaces.C.unsigned_char (G),
            Interfaces.C.unsigned_char (B));
    end Set_Background;


    procedure Set_Alt_Background
           (R, G, B : in Color_Component) is
    begin
        fl_static_background2
           (Interfaces.C.unsigned_char (R),
            Interfaces.C.unsigned_char (G),
            Interfaces.C.unsigned_char (B));
    end Set_Alt_Background;




    --  Custom Fonts  --

    function Font_Image
           (Kind : in Font_Kind)
        return String is
    begin
        --  should never get a null string in return since it's from an enum
        return Interfaces.C.Strings.Value (fl_static_get_font (Font_Kind'Pos (Kind)));
    end Font_Image;


    function Font_Family_Image
           (Kind : in Font_Kind)
        return String is
    begin
        --  should never get a null string in return since it's from an enum
        return Interfaces.C.Strings.Value (fl_static_get_font_name (Font_Kind'Pos (Kind)));
    end Font_Family_Image;


    procedure Set_Font_Kind
           (Target, Source : in Font_Kind) is
    begin
        fl_static_set_font (Font_Kind'Pos (Target), Font_Kind'Pos (Source));
    end Set_Font_Kind;


    procedure Set_Font_Kind
           (Target : in Font_Kind;
            Source : in String) is
    begin
        Interfaces.C.Strings.Free (Font_Overrides (Target));
        Font_Overrides (Target) := Interfaces.C.Strings.New_String (Source);
        fl_static_set_font2 (Font_Kind'Pos (Target), Font_Overrides (Target));
    end Set_Font_Kind;


    function Font_Sizes
           (Kind : in Font_Kind)
        return Font_Size_Array
    is
        Ptr : Storage.Integer_Address;
        Arr : Font_Size_Array
            (1 .. Integer (fl_static_get_font_sizes (Font_Kind'Pos (Kind), Ptr)));
    begin
        --  This array copying avoids any worry that the static buffer will be overwritten.
        for I in 1 .. Arr'Length loop
            Arr (I) := Font_Size (fl_static_font_size_array_get (Ptr, Interfaces.C.int (I)));
        end loop;
        return Arr;
    end Font_Sizes;


    procedure Setup_Fonts
           (How_Many_Set_Up : out Natural)
    is
        Result : Interfaces.C.int := fl_static_set_fonts;
    begin
        How_Many_Set_Up := Natural (Result);
    exception
    when Constraint_Error => raise Internal_FLTK_Error with
        "Fl::set_fonts returned unexpected int value of " &
        Interfaces.C.int'Image (Result);
    end Setup_Fonts;




    --  Box_Kind Attributes  --

    function Get_Box_Height_Offset
           (Kind : in Box_Kind)
        return Integer is
    begin
        return Integer (fl_static_box_dh (Box_Kind'Pos (Kind)));
    end Get_Box_Height_Offset;


    function Get_Box_Width_Offset
           (Kind : in Box_Kind)
        return Integer is
    begin
        return Integer (fl_static_box_dw (Box_Kind'Pos (Kind)));
    end Get_Box_Width_Offset;


    function Get_Box_X_Offset
           (Kind : in Box_Kind)
        return Integer is
    begin
        return Integer (fl_static_box_dx (Box_Kind'Pos (Kind)));
    end Get_Box_X_Offset;


    function Get_Box_Y_Offset
           (Kind : in Box_Kind)
        return Integer is
    begin
        return Integer (fl_static_box_dy (Box_Kind'Pos (Kind)));
    end Get_Box_Y_Offset;


    procedure Set_Box_Kind
           (To, From : in Box_Kind) is
    begin
        fl_static_set_boxtype (Box_Kind'Pos (To), Box_Kind'Pos (From));
    end Set_Box_Kind;


    function Draw_Box_Active
        return Boolean is
    begin
        return fl_static_draw_box_active /= 0;
    end Draw_Box_Active;


    function Get_Box_Draw_Function
           (Kind : in Box_Kind)
        return Box_Draw_Function is
    begin
        return FLTK.Box_Draw_Marshal.To_Ada (Kind, fl_static_get_boxtype (Box_Kind'Pos (Kind)));
    end Get_Box_Draw_Function;


    procedure Set_Box_Draw_Function
           (Kind               : in Box_Kind;
            Func               : in Box_Draw_Function;
            Offset_X, Offset_Y : in Byte_Integer := 0;
            Offset_W, Offset_H : in Byte_Integer := 0) is
    begin
        fl_static_set_boxtype2
           (Box_Kind'Pos (Kind),
            FLTK.Box_Draw_Marshal.To_C (Kind, Func),
            Interfaces.C.unsigned_char (Offset_X),
            Interfaces.C.unsigned_char (Offset_Y),
            Interfaces.C.unsigned_char (Offset_W),
            Interfaces.C.unsigned_char (Offset_H));
    end Set_Box_Draw_Function;




    --  Label_Kind Attributes  --

    procedure Set_Label_Kind
           (Target, Source : in Label_Kind) is
    begin
        --  As of FLTK 1.3.11 there is no definition given for this function
        --  so this is null to avoid linker errors.
        null;
    end Set_Label_Kind;


    procedure Set_Label_Draw_Function
           (Kind         : in Label_Kind;
            Draw_Func    : in Label_Draw_Function;
            Measure_Func : in Label_Measure_Function) is
    begin
        fl_static_set_labeltype
           (Label_Kind'Pos (Kind),
            FLTK.Label_Draw_Marshal.To_C (Kind, Draw_Func),
            FLTK.Label_Draw_Marshal.To_C (Kind, Measure_Func));
    end Set_Label_Draw_Function;




    --  Clipboard / Selection  --

    procedure Copy
           (Text : in String;
            Dest : in Buffer_Kind) is
    begin
        fl_static_copy
           (Interfaces.C.To_C (Text),
            Text'Length,
            Buffer_Kind'Pos (Dest));
    end Copy;


    procedure Paste
           (Receiver : in FLTK.Widgets.Widget'Class;
            Source   : in Buffer_Kind) is
    begin
        fl_static_paste
           (Wrapper (Receiver).Void_Ptr,
            Buffer_Kind'Pos (Source));
    end Paste;


    procedure Selection
           (Owner : in FLTK.Widgets.Widget'Class;
            Text  : in String) is
    begin
        fl_static_selection
           (Wrapper (Owner).Void_Ptr,
            Interfaces.C.To_C (Text),
            Text'Length);
    end Selection;


    function Clipboard_Contains
           (Kind : in String)
        return Boolean is
    begin
        return fl_static_clipboard_contains (Interfaces.C.To_C (Kind)) /= 0;
    end Clipboard_Contains;




    --  Dragon Drop  --

    procedure Drag_Drop_Start is
        Ignore : Interfaces.C.int := fl_static_dnd;
    begin
        null;
    end Drag_Drop_Start;


    function Get_Drag_Drop_Text_Support
        return Boolean is
    begin
        return fl_static_get_dnd_text_ops /= 0;
    end Get_Drag_Drop_Text_Support;


    procedure Set_Drag_Drop_Text_Support
           (To : in Boolean) is
    begin
        fl_static_set_dnd_text_ops (Boolean'Pos (To));
    end Set_Drag_Drop_Text_Support;




    --  Windows  --

    procedure Default_Window_Close
           (Item : in out FLTK.Widgets.Widget'Class) is
    begin
        pragma Assert (Wrapper (Item).Void_Ptr /= Null_Pointer);
        fl_static_default_atclose
           (Wrapper (Item).Void_Ptr,
            fl_widget_get_user_data (Wrapper (Item).Void_Ptr));
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Fl::default_atclose received uninitialised widget";
    end Default_Window_Close;


    function Get_First_Window
        return access FLTK.Widgets.Groups.Windows.Window'Class
    is
        First_Ptr : Storage.Integer_Address := fl_static_get_first_window;
        Actual_First : access FLTK.Widgets.Groups.Windows.Window'Class;
    begin
        if First_Ptr /= Null_Pointer then
            First_Ptr := fl_widget_get_user_data (First_Ptr);
            pragma Assert (First_Ptr /= Null_Pointer);
            Actual_First := Window_Convert.To_Pointer (Storage.To_Address (First_Ptr));
        end if;
        return Actual_First;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Widget returned by Fl::first_window did not have user_data reference back to Ada";
    end Get_First_Window;


    procedure Set_First_Window
           (To : in FLTK.Widgets.Groups.Windows.Window'Class) is
    begin
        fl_static_set_first_window (Wrapper (To).Void_Ptr);
    end Set_First_Window;


    function Get_Next_Window
           (From : in FLTK.Widgets.Groups.Windows.Window'Class)
        return access FLTK.Widgets.Groups.Windows.Window'Class
    is
        Next_Ptr : Storage.Integer_Address := fl_static_next_window (Wrapper (From).Void_Ptr);
        Actual_Next : access FLTK.Widgets.Groups.Windows.Window'Class;
    begin
        if Next_Ptr /= Null_Pointer then
            Next_Ptr := fl_widget_get_user_data (Next_Ptr);
            pragma Assert (Next_Ptr /= Null_Pointer);
            Actual_Next := Window_Convert.To_Pointer (Storage.To_Address (Next_Ptr));
        end if;
        return Actual_Next;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Widget returned by Fl::next_window did not have user_data reference back to Ada";
    end Get_Next_Window;


    function Get_Top_Modal
        return access FLTK.Widgets.Groups.Windows.Window'Class
    is
        Modal_Ptr : Storage.Integer_Address := fl_static_modal;
        Actual_Modal : access FLTK.Widgets.Groups.Windows.Window'Class;
    begin
        if Modal_Ptr /= Null_Pointer then
            Modal_Ptr := fl_widget_get_user_data (Modal_Ptr);
            pragma Assert (Modal_Ptr /= Null_Pointer);
            Actual_Modal := Window_Convert.To_Pointer (Storage.To_Address (Modal_Ptr));
        end if;
        return Actual_Modal;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Widget returned by Fl::modal did not have user_data reference back to Ada";
    end Get_Top_Modal;




    --  Queue  --

    function Read_Queue
        return access FLTK.Widgets.Widget'Class
    is
        Queue_Ptr : Storage.Integer_Address := fl_static_readqueue;
        Actual_Queue : access FLTK.Widgets.Widget'Class;
    begin
        if Queue_Ptr /= Null_Pointer then
            Queue_Ptr := fl_widget_get_user_data (Queue_Ptr);
            pragma Assert (Queue_Ptr /= Null_Pointer);
            Actual_Queue := Widget_Convert.To_Pointer (Storage.To_Address (Queue_Ptr));
        end if;
        return Actual_Queue;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error with
        "Widget returned by Fl::readqueue did not have user_data reference back to Ada";
    end Read_Queue;




    --  Schemes  --

    function Get_Scheme
        return String
    is
        Ptr : Interfaces.C.Strings.chars_ptr := fl_static_get_scheme;
    begin
        if Ptr = Interfaces.C.Strings.Null_Ptr then
            return "";
        else
            return Interfaces.C.Strings.Value (Ptr);
        end if;
    end Get_Scheme;


    procedure Set_Scheme
           (To : in String) is
    begin
        --  A copy of the Scheme string is stored in FLTK
        fl_static_set_scheme (Interfaces.C.To_C (To));
    end Set_Scheme;


    function Is_Scheme
           (Scheme : in String)
        return Boolean
    is
        Result : Interfaces.C.int := fl_static_is_scheme (Interfaces.C.To_C (Scheme));
    begin
        return Boolean'Val (Result);
    exception
    when Constraint_Error => raise Internal_FLTK_Error with
        "Fl::is_scheme returned unexpected int value of " &
        Interfaces.C.int'Image (Result);
    end Is_Scheme;




    --  Library Options  --

    function Get_Option
           (Opt : in Option)
        return Boolean is
    begin
        return fl_static_get_option (Option'Pos (Opt)) /= 0;
    end Get_Option;


    procedure Set_Option
           (Opt : in Option;
            To  : in Boolean) is
    begin
        fl_static_set_option (Option'Pos (Opt), Boolean'Pos (To));
    end Set_Option;




    --  Scrollbars  --

    function Get_Default_Scrollbar_Size
        return Natural
    is
        Result : Interfaces.C.int := fl_static_get_scrollbar_size;
    begin
        return Natural (Result);
    exception
    when Constraint_Error => raise Internal_FLTK_Error with
        "Fl::scrollbar_size returned unexpected int value of " &
        Interfaces.C.int'Image (Result);
    end Get_Default_Scrollbar_Size;


    procedure Set_Default_Scrollbar_Size
           (To : in Natural) is
    begin
        fl_static_set_scrollbar_size (Interfaces.C.int (To));
    end Set_Default_Scrollbar_Size;


begin


    fl_static_add_clipboard_notify
        (Storage.To_Integer (Clipboard_Notify_Hook'Address), Null_Pointer);


end FLTK.Static;