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
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
with
Ada.Command_Line,
Interfaces.C.Strings,
FLTK.Images.RGB,
FLTK.Show_Argv;
use type
Interfaces.C.int,
Interfaces.C.unsigned,
Interfaces.C.Strings.chars_ptr;
package body FLTK.Widgets.Groups.Windows is
------------------------
-- Functions From C --
------------------------
-- Allocation --
function new_fl_window
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return Storage.Integer_Address;
pragma Import (C, new_fl_window, "new_fl_window");
pragma Inline (new_fl_window);
function new_fl_window2
(W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return Storage.Integer_Address;
pragma Import (C, new_fl_window2, "new_fl_window2");
pragma Inline (new_fl_window2);
procedure free_fl_window
(W : in Storage.Integer_Address);
pragma Import (C, free_fl_window, "free_fl_window");
pragma Inline (free_fl_window);
-- Visibility --
procedure fl_window_show
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_show, "fl_window_show");
pragma Inline (fl_window_show);
procedure fl_window_show2
(W : in Storage.Integer_Address;
C : in Interfaces.C.int;
V : in Storage.Integer_Address);
pragma Import (C, fl_window_show2, "fl_window_show2");
pragma Inline (fl_window_show2);
procedure fl_window_hide
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_hide, "fl_window_hide");
pragma Inline (fl_window_hide);
function fl_window_shown
(W : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_shown, "fl_window_shown");
pragma Inline (fl_window_shown);
procedure fl_window_wait_for_expose
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_wait_for_expose, "fl_window_wait_for_expose");
pragma Inline (fl_window_wait_for_expose);
procedure fl_window_iconize
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_iconize, "fl_window_iconize");
pragma Inline (fl_window_iconize);
procedure fl_window_make_current
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_make_current, "fl_window_make_current");
pragma Inline (fl_window_make_current);
-- Fullscreen --
function fl_window_fullscreen_active
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_fullscreen_active, "fl_window_fullscreen_active");
pragma Inline (fl_window_fullscreen_active);
procedure fl_window_fullscreen
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_fullscreen, "fl_window_fullscreen");
pragma Inline (fl_window_fullscreen);
procedure fl_window_fullscreen_off
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_fullscreen_off, "fl_window_fullscreen_off");
pragma Inline (fl_window_fullscreen_off);
procedure fl_window_fullscreen_off2
(N : in Storage.Integer_Address;
X, Y, W, H : in Interfaces.C.int);
pragma Import (C, fl_window_fullscreen_off2, "fl_window_fullscreen_off2");
pragma Inline (fl_window_fullscreen_off2);
procedure fl_window_fullscreen_screens
(W : in Storage.Integer_Address;
T, B, L, R : in Interfaces.C.int);
pragma Import (C, fl_window_fullscreen_screens, "fl_window_fullscreen_screens");
pragma Inline (fl_window_fullscreen_screens);
-- Icons, Cursors --
procedure fl_window_set_icon
(W, P : in Storage.Integer_Address);
pragma Import (C, fl_window_set_icon, "fl_window_set_icon");
pragma Inline (fl_window_set_icon);
procedure fl_window_icons
(W, P : in Storage.Integer_Address;
C : in Interfaces.C.int);
pragma Import (C, fl_window_icons, "fl_window_icons");
pragma Inline (fl_window_icons);
procedure fl_window_default_icon
(P : in Storage.Integer_Address);
pragma Import (C, fl_window_default_icon, "fl_window_default_icon");
pragma Inline (fl_window_default_icon);
procedure fl_window_default_icons
(P : in Storage.Integer_Address;
C : in Interfaces.C.int);
pragma Import (C, fl_window_default_icons, "fl_window_default_icons");
pragma Inline (fl_window_default_icons);
function fl_window_get_iconlabel
(W : in Storage.Integer_Address)
return Interfaces.C.Strings.chars_ptr;
pragma Import (C, fl_window_get_iconlabel, "fl_window_get_iconlabel");
pragma Inline (fl_window_get_iconlabel);
procedure fl_window_set_iconlabel
(W : in Storage.Integer_Address;
S : in Interfaces.C.char_array);
pragma Import (C, fl_window_set_iconlabel, "fl_window_set_iconlabel");
pragma Inline (fl_window_set_iconlabel);
procedure fl_window_set_cursor
(W : in Storage.Integer_Address;
C : in Interfaces.C.int);
pragma Import (C, fl_window_set_cursor, "fl_window_set_cursor");
pragma Inline (fl_window_set_cursor);
procedure fl_window_set_cursor2
(W, P : in Storage.Integer_Address;
X, Y : in Interfaces.C.int);
pragma Import (C, fl_window_set_cursor2, "fl_window_set_cursor2");
pragma Inline (fl_window_set_cursor2);
procedure fl_window_set_default_cursor
(W : in Storage.Integer_Address;
C : in Interfaces.C.int);
pragma Import (C, fl_window_set_default_cursor, "fl_window_set_default_cursor");
pragma Inline (fl_window_set_default_cursor);
-- Settings --
function fl_window_get_border
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_get_border, "fl_window_get_border");
pragma Inline (fl_window_get_border);
procedure fl_window_set_border
(W : in Storage.Integer_Address;
S : in Interfaces.C.int);
pragma Import (C, fl_window_set_border, "fl_window_set_border");
pragma Inline (fl_window_set_border);
procedure fl_window_clear_border
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_clear_border, "fl_window_clear_border");
pragma Inline (fl_window_clear_border);
function fl_window_get_override
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_get_override, "fl_window_get_override");
pragma Inline (fl_window_get_override);
procedure fl_window_set_override
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_set_override, "fl_window_set_override");
pragma Inline (fl_window_set_override);
function fl_window_modal
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_modal, "fl_window_modal");
pragma Inline (fl_window_modal);
function fl_window_non_modal
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_non_modal, "fl_window_non_modal");
pragma Inline (fl_window_non_modal);
procedure fl_window_set_modal
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_set_modal, "fl_window_set_modal");
pragma Inline (fl_window_set_modal);
procedure fl_window_set_non_modal
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_set_non_modal, "fl_window_set_non_modal");
pragma Inline (fl_window_set_non_modal);
procedure fl_window_clear_modal_states
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_clear_modal_states, "fl_window_clear_modal_states");
pragma Inline (fl_window_clear_modal_states);
-- Labels, Hotspot, Shape --
function fl_window_get_label
(W : in Storage.Integer_Address)
return Interfaces.C.Strings.chars_ptr;
pragma Import (C, fl_window_get_label, "fl_window_get_label");
pragma Inline (fl_window_get_label);
procedure fl_window_copy_label
(W : in Storage.Integer_Address;
T : in Interfaces.C.char_array);
pragma Import (C, fl_window_copy_label, "fl_window_copy_label");
pragma Inline (fl_window_copy_label);
procedure fl_window_hotspot
(W : in Storage.Integer_Address;
X, Y, S : in Interfaces.C.int);
pragma Import (C, fl_window_hotspot, "fl_window_hotspot");
pragma Inline (fl_window_hotspot);
procedure fl_window_hotspot2
(W, I : in Storage.Integer_Address;
S : in Interfaces.C.int);
pragma Import (C, fl_window_hotspot2, "fl_window_hotspot2");
pragma Inline (fl_window_hotspot2);
procedure fl_window_shape
(W, P : in Storage.Integer_Address);
pragma Import (C, fl_window_shape, "fl_window_shape");
pragma Inline (fl_window_shape);
-- Dimensions --
procedure fl_window_size_range
(W : in Storage.Integer_Address;
LW, LH, HW, HH, DW, DH, A : in Interfaces.C.int);
pragma Import (C, fl_window_size_range, "fl_window_size_range");
pragma Inline (fl_window_size_range);
procedure fl_window_resize
(N : in Storage.Integer_Address;
X, Y, W, H : in Interfaces.C.int);
pragma Import (C, fl_window_resize, "fl_window_resize");
pragma Inline (fl_window_resize);
function fl_window_get_force_position
(N : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_get_force_position, "fl_window_get_force_position");
pragma Inline (fl_window_get_force_position);
procedure fl_window_set_force_position
(N : in Storage.Integer_Address;
S : in Interfaces.C.int);
pragma Import (C, fl_window_set_force_position, "fl_window_set_force_position");
pragma Inline (fl_window_set_force_position);
function fl_window_get_x_root
(W : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_get_x_root, "fl_window_get_x_root");
pragma Inline (fl_window_get_x_root);
function fl_window_get_y_root
(W : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_get_y_root, "fl_window_get_y_root");
pragma Inline (fl_window_get_y_root);
function fl_window_get_decorated_w
(W : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_get_decorated_w, "fl_window_get_decorated_w");
pragma Inline (fl_window_get_decorated_w);
function fl_window_get_decorated_h
(W : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_window_get_decorated_h, "fl_window_get_decorated_h");
pragma Inline (fl_window_get_decorated_h);
-- Class Info --
function fl_window_get_xclass
(W : in Storage.Integer_Address)
return Interfaces.C.Strings.chars_ptr;
pragma Import (C, fl_window_get_xclass, "fl_window_get_xclass");
pragma Inline (fl_window_get_xclass);
procedure fl_window_set_xclass
(W : in Storage.Integer_Address;
C : in Interfaces.C.char_array);
pragma Import (C, fl_window_set_xclass, "fl_window_set_xclass");
pragma Inline (fl_window_set_xclass);
function fl_window_get_default_xclass
return Interfaces.C.Strings.chars_ptr;
pragma Import (C, fl_window_get_default_xclass, "fl_window_get_default_xclass");
pragma Inline (fl_window_get_default_xclass);
procedure fl_window_set_default_xclass
(C : in Interfaces.C.char_array);
pragma Import (C, fl_window_set_default_xclass, "fl_window_set_default_xclass");
pragma Inline (fl_window_set_default_xclass);
function fl_window_menu_window
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_menu_window, "fl_window_menu_window");
pragma Inline (fl_window_menu_window);
function fl_window_tooltip_window
(W : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_window_tooltip_window, "fl_window_tooltip_window");
pragma Inline (fl_window_tooltip_window);
-- Drawing, Events --
procedure fl_window_draw
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_draw, "fl_window_draw");
pragma Inline (fl_window_draw);
procedure fl_window_flush
(W : in Storage.Integer_Address);
pragma Import (C, fl_window_flush, "fl_window_flush");
pragma Inline (fl_window_flush);
function fl_window_handle
(W : in Storage.Integer_Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_window_handle, "fl_window_handle");
pragma Inline (fl_window_handle);
-------------------
-- Destructors --
-------------------
procedure Extra_Final
(This : in out Window) is
begin
Extra_Final (Group (This));
end Extra_Final;
procedure Finalize
(This : in out Window) is
begin
Extra_Final (This);
if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
free_fl_window (This.Void_Ptr);
This.Void_Ptr := Null_Pointer;
end if;
end Finalize;
--------------------
-- Constructors --
--------------------
procedure Extra_Init
(This : in out Window;
X, Y, W, H : in Integer;
Text : in String) is
begin
Extra_Init (Group (This), X, Y, W, H, Text);
end Extra_Init;
procedure Initialize
(This : in out Window) is
begin
This.Draw_Ptr := fl_window_draw'Address;
This.Handle_Ptr := fl_window_handle'Address;
end Initialize;
package body Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Window is
begin
return This : Window do
This.Void_Ptr := new_fl_window
(Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
Extra_Init (This, X, Y, W, H, Text);
end return;
end Create;
function Create
(Parent : in out Group'Class;
X, Y, W, H : in Integer;
Text : in String := "")
return Window is
begin
return This : Window := Create (X, Y, W, H, Text) do
Parent.Add (This);
end return;
end Create;
function Create
(W, H : in Integer;
Text : in String := "")
return Window is
begin
return This : Window do
This.Void_Ptr := new_fl_window2
(Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
Extra_Init (This, This.Get_X, This.Get_Y, W, H, Text);
end return;
end Create;
function Create
(Parent : in out Group'Class;
W, H : in Integer;
Text : in String := "")
return Window is
begin
return This : Window := Create (W, H, Text) do
Parent.Add (This);
end return;
end Create;
end Forge;
-----------------------
-- API Subprograms --
-----------------------
-- Visibility --
procedure Show
(This : in out Window) is
begin
fl_window_show (This.Void_Ptr);
end Show;
procedure Show_With_Args
(This : in out Window) is
begin
FLTK.Show_Argv.Dispatch (fl_window_show2'Access, This.Void_Ptr);
end Show_With_Args;
procedure Hide
(This : in out Window) is
begin
fl_window_hide (This.Void_Ptr);
end Hide;
function Is_Shown
(This : in Window)
return Boolean is
begin
return fl_window_shown (This.Void_Ptr) /= 0;
end Is_Shown;
procedure Wait_For_Expose
(This : in out Window) is
begin
fl_window_wait_for_expose (This.Void_Ptr);
end Wait_For_Expose;
procedure Iconify
(This : in out Window) is
begin
fl_window_iconize (This.Void_Ptr);
end Iconify;
procedure Make_Current
(This : in out Window) is
begin
fl_window_make_current (This.Void_Ptr);
Last_Current := This'Unchecked_Access;
end Make_Current;
function Last_Made_Current
return access Window'Class is
begin
return Last_Current;
end Last_Made_Current;
-- Fullscreen --
function Is_Fullscreen
(This : in Window)
return Boolean is
begin
return fl_window_fullscreen_active (This.Void_Ptr) /= 0;
end Is_Fullscreen;
procedure Fullscreen_On
(This : in out Window) is
begin
fl_window_fullscreen (This.Void_Ptr);
end Fullscreen_On;
procedure Fullscreen_Off
(This : in out Window) is
begin
fl_window_fullscreen_off (This.Void_Ptr);
end Fullscreen_Off;
procedure Fullscreen_Off
(This : in out Window;
X, Y, W, H : in Integer) is
begin
fl_window_fullscreen_off2
(This.Void_Ptr,
Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H));
end Fullscreen_Off;
procedure Fullscreen_Screens
(This : in out Window;
Top, Bottom, Left, Right : in Natural) is
begin
fl_window_fullscreen_screens
(This.Void_Ptr,
Interfaces.C.int (Top),
Interfaces.C.int (Bottom),
Interfaces.C.int (Left),
Interfaces.C.int (Right));
end Fullscreen_Screens;
-- Icons, Cursors --
procedure Set_Icon
(This : in out Window;
Pic : in FLTK.Images.RGB.RGB_Image'Class) is
begin
fl_window_set_icon
(This.Void_Ptr,
Wrapper (Pic).Void_Ptr);
end Set_Icon;
procedure Set_Icons
(This : in out Window;
Pics : in FLTK.Images.RGB.RGB_Image_Array)
is
Pointers : array (Pics'First .. Pics'Last) of aliased Storage.Integer_Address;
begin
for Index in Pointers'Range loop
Pointers (Index) := Wrapper (Pics (Index)).Void_Ptr;
end loop;
fl_window_icons
(This.Void_Ptr,
Storage.To_Integer (Pointers (Pointers'First)'Address),
Pointers'Length);
end Set_Icons;
procedure Reset_Icons
(This : in out Window) is
begin
fl_window_icons (This.Void_Ptr, Null_Pointer, 0);
end Reset_Icons;
procedure Set_Default_Icon
(Pic : in FLTK.Images.RGB.RGB_Image'Class) is
begin
fl_window_default_icon (Wrapper (Pic).Void_Ptr);
end Set_Default_Icon;
procedure Set_Default_Icons
(Pics : in FLTK.Images.RGB.RGB_Image_Array)
is
Pointers : array (Pics'First .. Pics'Last) of aliased Storage.Integer_Address;
begin
for Index in Pointers'Range loop
Pointers (Index) := Wrapper (Pics (Index)).Void_Ptr;
end loop;
fl_window_default_icons
(Storage.To_Integer (Pointers (Pointers'First)'Address),
Pointers'Length);
end Set_Default_Icons;
procedure Reset_Default_Icons is
begin
fl_window_default_icons (Null_Pointer, 0);
end Reset_Default_Icons;
function Get_Icon_Label
(This : in Window)
return String
is
Ptr : Interfaces.C.Strings.chars_ptr := fl_window_get_iconlabel (This.Void_Ptr);
begin
if Ptr = Interfaces.C.Strings.Null_Ptr then
return "";
else
-- pointer to internal buffer only, so no Free required
return Interfaces.C.Strings.Value (Ptr);
end if;
end Get_Icon_Label;
procedure Set_Icon_Label
(This : in out Window;
To : in String) is
begin
fl_window_set_iconlabel (This.Void_Ptr, Interfaces.C.To_C (To));
end Set_Icon_Label;
procedure Set_Cursor
(This : in out Window;
To : in Mouse_Cursor_Kind) is
begin
fl_window_set_cursor (This.Void_Ptr, Cursor_Values (To));
end Set_Cursor;
procedure Set_Cursor
(This : in out Window;
Pic : in FLTK.Images.RGB.RGB_Image'Class;
Hot_X, Hot_Y : in Integer) is
begin
fl_window_set_cursor2
(This.Void_Ptr,
Wrapper (Pic).Void_Ptr,
Interfaces.C.int (Hot_X),
Interfaces.C.int (Hot_Y));
end Set_Cursor;
procedure Set_Default_Cursor
(This : in out Window;
To : in Mouse_Cursor_Kind) is
begin
fl_window_set_default_cursor (This.Void_Ptr, Cursor_Values (To));
end Set_Default_Cursor;
-- Settings --
function Has_Border
(This : in Window)
return Boolean is
begin
return fl_window_get_border (This.Void_Ptr) /= 0;
end Has_Border;
procedure Set_Border
(This : in out Window;
Value : in Boolean := True) is
begin
fl_window_set_border (This.Void_Ptr, Boolean'Pos (Value));
end Set_Border;
procedure Clear_Border
(This : in out Window) is
begin
fl_window_clear_border (This.Void_Ptr);
end Clear_Border;
function Is_Override
(This : in Window)
return Boolean is
begin
return fl_window_get_override (This.Void_Ptr) /= 0;
end Is_Override;
procedure Set_Override
(This : in out Window) is
begin
fl_window_set_override (This.Void_Ptr);
end Set_Override;
function Is_Modal
(This : in Window)
return Boolean is
begin
return fl_window_modal (This.Void_Ptr) /= 0;
end Is_Modal;
function Is_Non_Modal
(This : in Window)
return Boolean is
begin
return fl_window_non_modal (This.Void_Ptr) /= 0;
end Is_Non_Modal;
function Get_Modal_State
(This : in Window)
return Modal_State is
begin
if fl_window_modal (This.Void_Ptr) /= 0 then
return Modal;
elsif fl_window_non_modal (This.Void_Ptr) /= 0 then
return Non_Modal;
else
return Normal;
end if;
end Get_Modal_State;
procedure Set_Modal
(This : in out Window) is
begin
fl_window_set_modal (This.Void_Ptr);
end Set_Modal;
procedure Set_Non_Modal
(This : in out Window) is
begin
fl_window_set_non_modal (This.Void_Ptr);
end Set_Non_Modal;
procedure Set_Modal_State
(This : in out Window;
Value : in Modal_State) is
begin
case Value is
when Normal => fl_window_clear_modal_states (This.Void_Ptr);
when Non_Modal => fl_window_set_non_modal (This.Void_Ptr);
when Modal => fl_window_set_modal (This.Void_Ptr);
end case;
end Set_Modal_State;
procedure Clear_Modal_State
(This : in out Window) is
begin
fl_window_clear_modal_states (This.Void_Ptr);
end Clear_Modal_State;
-- Labels, Hotspot, Shape --
function Get_Label
(This : in Window)
return String
is
Ptr : Interfaces.C.Strings.chars_ptr := fl_window_get_label (This.Void_Ptr);
begin
if Ptr = Interfaces.C.Strings.Null_Ptr then
return "";
else
-- pointer to internal buffer only, so no Free required
return Interfaces.C.Strings.Value (Ptr);
end if;
end Get_Label;
procedure Set_Label
(This : in out Window;
Text : in String) is
begin
fl_window_copy_label (This.Void_Ptr, Interfaces.C.To_C (Text));
end Set_Label;
procedure Set_Labels
(This : in out Window;
Text, Icon_Text : in String) is
begin
This.Set_Label (Text);
This.Set_Icon_Label (Icon_Text);
end Set_Labels;
procedure Hotspot
(This : in out Window;
X, Y : in Integer;
Offscreen : in Boolean := False) is
begin
fl_window_hotspot
(This.Void_Ptr,
Interfaces.C.int (X),
Interfaces.C.int (Y),
Boolean'Pos (Offscreen));
end Hotspot;
procedure Hotspot
(This : in out Window;
Item : in Widget'Class;
Offscreen : in Boolean := False) is
begin
fl_window_hotspot2
(This.Void_Ptr,
Item.Void_Ptr,
Boolean'Pos (Offscreen));
end Hotspot;
procedure Shape
(This : in out Window;
Pic : in FLTK.Images.Image'Class) is
begin
fl_window_shape (This.Void_Ptr, Wrapper (Pic).Void_Ptr);
end Shape;
-- Dimensions --
procedure Set_Size_Range
(This : in out Window;
Min_W, Min_H : in Integer;
Max_W, Max_H, Incre_W, Incre_H : in Integer := 0;
Keep_Aspect : in Boolean := False) is
begin
fl_window_size_range
(This.Void_Ptr,
Interfaces.C.int (Min_W),
Interfaces.C.int (Min_H),
Interfaces.C.int (Max_W),
Interfaces.C.int (Max_H),
Interfaces.C.int (Incre_W),
Interfaces.C.int (Incre_H),
Boolean'Pos (Keep_Aspect));
end Set_Size_Range;
procedure Resize
(This : in out Window;
X, Y, W, H : in Integer) is
begin
fl_window_resize
(This.Void_Ptr,
Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H));
end Resize;
function Is_Position_Forced
(This : in Window)
return Boolean
is
Result : Interfaces.C.int := fl_window_get_force_position (This.Void_Ptr);
begin
return Boolean'Val (Result);
exception
when Constraint_Error => raise Internal_FLTK_Error with
"Fl_Window::force_position returned unexpected int value of " &
Interfaces.C.int'Image (Result);
end Is_Position_Forced;
procedure Force_Position
(This : in out Window;
State : in Boolean := True) is
begin
fl_window_set_force_position (This.Void_Ptr, Boolean'Pos (State));
end Force_Position;
function Get_X_Root
(This : in Window)
return Integer is
begin
return Integer (fl_window_get_x_root (This.Void_Ptr));
end Get_X_Root;
function Get_Y_Root
(This : in Window)
return Integer is
begin
return Integer (fl_window_get_y_root (This.Void_Ptr));
end Get_Y_Root;
function Get_Decorated_W
(This : in Window)
return Integer is
begin
return Integer (fl_window_get_decorated_w (This.Void_Ptr));
end Get_Decorated_W;
function Get_Decorated_H
(This : in Window)
return Integer is
begin
return Integer (fl_window_get_decorated_h (This.Void_Ptr));
end Get_Decorated_H;
-- Class Info --
function Get_X_Class
(This : in Window)
return String
is
Result : Interfaces.C.Strings.chars_ptr := fl_window_get_xclass (This.Void_Ptr);
begin
if Result = Interfaces.C.Strings.Null_Ptr then
return "";
else
return Interfaces.C.Strings.Value (Result);
end if;
end Get_X_Class;
procedure Set_X_Class
(This : in out Window;
Value : in String) is
begin
fl_window_set_xclass (This.Void_Ptr, Interfaces.C.To_C (Value));
end Set_X_Class;
function Get_Default_X_Class
return String
is
Result : Interfaces.C.Strings.chars_ptr := fl_window_get_default_xclass;
begin
if Result = Interfaces.C.Strings.Null_Ptr then
return "";
else
return Interfaces.C.Strings.Value (Result);
end if;
end Get_Default_X_Class;
procedure Set_Default_X_Class
(Value : in String) is
begin
fl_window_set_default_xclass (Interfaces.C.To_C (Value));
end Set_Default_X_Class;
function Is_Menu_Window
(This : in Window)
return Boolean is
begin
return fl_window_menu_window (This.Void_Ptr) /= 0;
end Is_Menu_Window;
function Is_Tooltip_Window
(This : in Window)
return Boolean is
begin
return fl_window_tooltip_window (This.Void_Ptr) /= 0;
end Is_Tooltip_Window;
-- Drawing, Events --
procedure Draw
(This : in out Window) is
begin
Group (This).Draw;
end Draw;
procedure Flush
(This : in out Window) is
begin
fl_window_flush (This.Void_Ptr);
end Flush;
function Handle
(This : in out Window;
Event : in Event_Kind)
return Event_Outcome is
begin
return Group (This).Handle (Event);
end Handle;
end FLTK.Widgets.Groups.Windows;
|