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
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
with
Ada.Assertions,
Interfaces.C.Strings;
use type
Interfaces.C.int,
Interfaces.C.Strings.chars_ptr;
package body FLTK.Widgets.Inputs is
package Chk renames Ada.Assertions;
------------------------
-- Functions From C --
------------------------
function new_fl_input
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return Storage.Integer_Address;
pragma Import (C, new_fl_input, "new_fl_input");
pragma Inline (new_fl_input);
procedure free_fl_input
(F : in Storage.Integer_Address);
pragma Import (C, free_fl_input, "free_fl_input");
pragma Inline (free_fl_input);
function fl_input_copy
(I : in Storage.Integer_Address;
C : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_copy, "fl_input_copy");
pragma Inline (fl_input_copy);
function fl_input_cut
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_cut, "fl_input_cut");
pragma Inline (fl_input_cut);
function fl_input_cut2
(I : in Storage.Integer_Address;
B : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_cut2, "fl_input_cut2");
pragma Inline (fl_input_cut2);
function fl_input_cut3
(I : in Storage.Integer_Address;
A, B : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_cut3, "fl_input_cut3");
pragma Inline (fl_input_cut3);
function fl_input_copy_cuts
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_copy_cuts, "fl_input_copy_cuts");
pragma Inline (fl_input_copy_cuts);
function fl_input_undo
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_undo, "fl_input_undo");
pragma Inline (fl_input_undo);
function fl_input_get_readonly
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_readonly, "fl_input_get_readonly");
pragma Inline (fl_input_get_readonly);
procedure fl_input_set_readonly
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_readonly, "fl_input_set_readonly");
pragma Inline (fl_input_set_readonly);
function fl_input_get_tab_nav
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_tab_nav, "fl_input_get_tab_nav");
pragma Inline (fl_input_get_tab_nav);
procedure fl_input_set_tab_nav
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_tab_nav, "fl_input_set_tab_nav");
pragma Inline (fl_input_set_tab_nav);
function fl_input_get_wrap
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_wrap, "fl_input_get_wrap");
pragma Inline (fl_input_get_wrap);
procedure fl_input_set_wrap
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_wrap, "fl_input_set_wrap");
pragma Inline (fl_input_set_wrap);
function fl_input_get_input_type
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_input_type, "fl_input_get_input_type");
pragma Inline (fl_input_get_input_type);
procedure fl_input_set_input_type
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_input_type, "fl_input_set_input_type");
pragma Inline (fl_input_set_input_type);
function fl_input_get_shortcut
(I : in Storage.Integer_Address)
return Interfaces.C.unsigned_long;
pragma Import (C, fl_input_get_shortcut, "fl_input_get_shortcut");
pragma Inline (fl_input_get_shortcut);
procedure fl_input_set_shortcut
(I : in Storage.Integer_Address;
T : in Interfaces.C.unsigned_long);
pragma Import (C, fl_input_set_shortcut, "fl_input_set_shortcut");
pragma Inline (fl_input_set_shortcut);
function fl_input_get_mark
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_mark, "fl_input_get_mark");
pragma Inline (fl_input_get_mark);
function fl_input_set_mark
(I : in Storage.Integer_Address;
T : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_set_mark, "fl_input_set_mark");
pragma Inline (fl_input_set_mark);
function fl_input_get_position
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_position, "fl_input_get_position");
pragma Inline (fl_input_get_position);
function fl_input_set_position
(I : in Storage.Integer_Address;
T : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_set_position, "fl_input_set_position");
pragma Inline (fl_input_set_position);
function fl_input_set_position2
(I : in Storage.Integer_Address;
P, M : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_set_position2, "fl_input_set_position2");
pragma Inline (fl_input_set_position2);
function fl_input_index
(I : in Storage.Integer_Address;
P : in Interfaces.C.int)
return Interfaces.C.unsigned;
pragma Import (C, fl_input_index, "fl_input_index");
pragma Inline (fl_input_index);
function fl_input_insert
(I : in Storage.Integer_Address;
S : in Interfaces.C.char_array;
L : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_insert, "fl_input_insert");
pragma Inline (fl_input_insert);
function fl_input_replace
(I : in Storage.Integer_Address;
B, E : in Interfaces.C.int;
S : in Interfaces.C.char_array;
L : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_replace, "fl_input_replace");
pragma Inline (fl_input_replace);
function fl_input_set_value
(I : in Storage.Integer_Address;
T : in Interfaces.C.char_array;
L : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_set_value, "fl_input_set_value");
pragma Inline (fl_input_set_value);
function fl_input_get_maximum_size
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_maximum_size, "fl_input_get_maximum_size");
pragma Inline (fl_input_get_maximum_size);
procedure fl_input_set_maximum_size
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_maximum_size, "fl_input_set_maximum_size");
pragma Inline (fl_input_set_maximum_size);
function fl_input_get_size
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_size, "fl_input_get_size");
pragma Inline (fl_input_get_size);
function fl_input_get_cursor_color
(I : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_input_get_cursor_color, "fl_input_get_cursor_color");
pragma Inline (fl_input_get_cursor_color);
procedure fl_input_set_cursor_color
(I : in Storage.Integer_Address;
T : in Interfaces.C.unsigned);
pragma Import (C, fl_input_set_cursor_color, "fl_input_set_cursor_color");
pragma Inline (fl_input_set_cursor_color);
function fl_input_get_textcolor
(I : in Storage.Integer_Address)
return Interfaces.C.unsigned;
pragma Import (C, fl_input_get_textcolor, "fl_input_get_textcolor");
pragma Inline (fl_input_get_textcolor);
procedure fl_input_set_textcolor
(I : in Storage.Integer_Address;
T : in Interfaces.C.unsigned);
pragma Import (C, fl_input_set_textcolor, "fl_input_set_textcolor");
pragma Inline (fl_input_set_textcolor);
function fl_input_get_textfont
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_textfont, "fl_input_get_textfont");
pragma Inline (fl_input_get_textfont);
procedure fl_input_set_textfont
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_textfont, "fl_input_set_textfont");
pragma Inline (fl_input_set_textfont);
function fl_input_get_textsize
(I : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_input_get_textsize, "fl_input_get_textsize");
pragma Inline (fl_input_get_textsize);
procedure fl_input_set_textsize
(I : in Storage.Integer_Address;
T : in Interfaces.C.int);
pragma Import (C, fl_input_set_textsize, "fl_input_set_textsize");
pragma Inline (fl_input_set_textsize);
procedure fl_input_set_size
(I : in Storage.Integer_Address;
W, H : in Interfaces.C.int);
pragma Import (C, fl_input_set_size, "fl_input_set_size");
pragma Inline (fl_input_set_size);
procedure fl_input_resize
(I : in Storage.Integer_Address;
X, Y, W, H : in Interfaces.C.int);
pragma Import (C, fl_input_resize, "fl_input_resize");
pragma Inline (fl_input_resize);
procedure fl_input_draw
(W : in Storage.Integer_Address);
pragma Import (C, fl_input_draw, "fl_input_draw");
pragma Inline (fl_input_draw);
function fl_input_handle
(W : in Storage.Integer_Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_input_handle, "fl_input_handle");
pragma Inline (fl_input_handle);
-------------------
-- Destructors --
-------------------
procedure Extra_Final
(This : in out Input) is
begin
Extra_Final (Widget (This));
end Extra_Final;
procedure Finalize
(This : in out Input) is
begin
Extra_Final (This);
if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
free_fl_input (This.Void_Ptr);
This.Void_Ptr := Null_Pointer;
end if;
end Finalize;
--------------------
-- Constructors --
--------------------
procedure Extra_Init
(This : in out Input;
X, Y, W, H : in Integer;
Text : in String) is
begin
Extra_Init (Widget (This), X, Y, W, H, Text);
end Extra_Init;
procedure Initialize
(This : in out Input) is
begin
This.Draw_Ptr := fl_input_draw'Address;
This.Handle_Ptr := fl_input_handle'Address;
end Initialize;
package body Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Input is
begin
return This : Input do
This.Void_Ptr := new_fl_input
(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;
end Forge;
-----------------------
-- API Subprograms --
-----------------------
procedure Copy
(This : in out Input;
Destination : in Clipboard_Kind := Cut_Paste_Board)
is
Result : Interfaces.C.int := fl_input_copy
(This.Void_Ptr, Clipboard_Kind'Pos (Destination));
begin
pragma Assert (Result in 0 .. 1);
exception
when Chk.Assertion_Error => raise Internal_FLTK_Error;
end Copy;
function Copy
(This : in out Input;
Destination : in Clipboard_Kind := Cut_Paste_Board)
return Boolean
is
Result : Interfaces.C.int := fl_input_copy
(This.Void_Ptr, Clipboard_Kind'Pos (Destination));
begin
pragma Assert (Result in 0 .. 1);
return Boolean'Val (Result);
exception
when Chk.Assertion_Error => raise Internal_FLTK_Error;
end Copy;
procedure Cut
(This : in out Input)
is
Result : Interfaces.C.int := fl_input_cut (This.Void_Ptr);
begin
null;
end Cut;
function Cut
(This : in out Input)
return Boolean is
begin
return fl_input_cut (This.Void_Ptr) /= 0;
end Cut;
procedure Cut
(This : in out Input;
Num_Bytes : in Integer)
is
Result : Interfaces.C.int := fl_input_cut2
(This.Void_Ptr,
Interfaces.C.int (Num_Bytes));
begin
null;
end Cut;
function Cut
(This : in out Input;
Num_Bytes : in Integer)
return Boolean is
begin
return fl_input_cut2
(This.Void_Ptr,
Interfaces.C.int (Num_Bytes)) /= 0;
end Cut;
procedure Cut
(This : in out Input;
Start, Finish : in Integer)
is
Result : Interfaces.C.int := fl_input_cut3
(This.Void_Ptr,
Interfaces.C.int (Start),
Interfaces.C.int (Finish));
begin
null;
end Cut;
function Cut
(This : in out Input;
Start, Finish : in Integer)
return Boolean is
begin
return fl_input_cut3
(This.Void_Ptr,
Interfaces.C.int (Start),
Interfaces.C.int (Finish)) /= 0;
end Cut;
procedure Copy_Cuts
(This : in out Input)
is
Result : Interfaces.C.int := fl_input_copy_cuts (This.Void_Ptr);
begin
null;
end Copy_Cuts;
function Copy_Cuts
(This : in out Input)
return Boolean
is
Result : Interfaces.C.int := fl_input_copy_cuts (This.Void_Ptr);
begin
return Result /= 0;
end Copy_Cuts;
procedure Undo
(This : in out Input)
is
Result : Interfaces.C.int := fl_input_undo (This.Void_Ptr);
begin
null;
end Undo;
function Undo
(This : in out Input)
return Boolean is
begin
return fl_input_undo (This.Void_Ptr) /= 0;
end Undo;
function Is_Readonly
(This : in Input)
return Boolean is
begin
return fl_input_get_readonly (This.Void_Ptr) /= 0;
end Is_Readonly;
procedure Set_Readonly
(This : in out Input;
To : in Boolean) is
begin
fl_input_set_readonly (This.Void_Ptr, Boolean'Pos (To));
end Set_Readonly;
function Is_Tab_Nav
(This : in Input)
return Boolean is
begin
return fl_input_get_tab_nav (This.Void_Ptr) /= 0;
end Is_Tab_Nav;
procedure Set_Tab_Nav
(This : in out Input;
To : in Boolean) is
begin
fl_input_set_tab_nav (This.Void_Ptr, Boolean'Pos (To));
end Set_Tab_Nav;
function Is_Wrap
(This : in Input)
return Boolean is
begin
return fl_input_get_wrap (This.Void_Ptr) /= 0;
end Is_Wrap;
procedure Set_Wrap
(This : in out Input;
To : in Boolean) is
begin
fl_input_set_wrap (This.Void_Ptr, Boolean'Pos (To));
end Set_Wrap;
function Get_Input_Type
(This : in Input)
return Input_Kind
is
C_Val : Interfaces.C.int := fl_input_get_input_type (This.Void_Ptr);
begin
for V in Input_Kind loop
if Input_Kind_Values (V) = C_Val then
return V;
end if;
end loop;
return Normal_Kind;
end Get_Input_Type;
function Get_Shortcut_Key
(This : in Input)
return Key_Combo is
begin
return To_Ada (fl_input_get_shortcut (This.Void_Ptr));
end Get_Shortcut_Key;
procedure Set_Shortcut_Key
(This : in out Input;
To : in Key_Combo) is
begin
fl_input_set_shortcut (This.Void_Ptr, To_C (To));
end Set_Shortcut_Key;
function Get_Mark
(This : in Input)
return Natural is
begin
return Natural (fl_input_get_mark (This.Void_Ptr));
end Get_Mark;
procedure Set_Mark
(This : in out Input;
To : in Natural)
is
Result : Interfaces.C.int := fl_input_set_mark
(This.Void_Ptr,
Interfaces.C.int (To));
begin
null;
end Set_Mark;
function Set_Mark
(This : in out Input;
To : in Natural)
return Boolean is
begin
return fl_input_set_mark
(This.Void_Ptr,
Interfaces.C.int (To)) /= 0;
end Set_Mark;
function Get_Position
(This : in Input)
return Natural is
begin
return Natural (fl_input_get_position (This.Void_Ptr));
end Get_Position;
procedure Set_Position
(This : in out Input;
To : in Natural)
is
Result : Interfaces.C.int := fl_input_set_position
(This.Void_Ptr,
Interfaces.C.int (To));
begin
null;
end Set_Position;
function Set_Position
(This : in out Input;
To : in Natural)
return Boolean is
begin
return fl_input_set_position
(This.Void_Ptr,
Interfaces.C.int (To)) /= 0;
end Set_Position;
procedure Set_Position_Mark
(This : in out Input;
Place : in Natural;
Mark : in Natural)
is
Result : Interfaces.C.int := fl_input_set_position2
(This.Void_Ptr,
Interfaces.C.int (Place),
Interfaces.C.int (Mark));
begin
null;
end Set_Position_Mark;
function Set_Position_Mark
(This : in out Input;
Place : in Natural;
Mark : in Natural)
return Boolean is
begin
return fl_input_set_position2
(This.Void_Ptr,
Interfaces.C.int (Place),
Interfaces.C.int (Mark)) /= 0;
end Set_Position_Mark;
function Index
(This : in Input;
Place : in Integer)
return Character is
begin
return Character'Val (fl_input_index (This.Void_Ptr, Interfaces.C.int (Place)));
end Index;
procedure Insert
(This : in out Input;
Str : in String)
is
Result : Interfaces.C.int := fl_input_insert
(This.Void_Ptr,
Interfaces.C.To_C (Str, False),
Str'Length);
begin
null;
end Insert;
function Insert
(This : in out Input;
Str : in String)
return Boolean is
begin
return fl_input_insert
(This.Void_Ptr,
Interfaces.C.To_C (Str, False),
Str'Length) /= 0;
end Insert;
procedure Replace
(This : in out Input;
From, To : in Natural;
New_Text : in String)
is
Result : Interfaces.C.int := fl_input_replace
(This.Void_Ptr,
Interfaces.C.int (From),
Interfaces.C.int (To),
Interfaces.C.To_C (New_Text),
New_Text'Length);
begin
null;
end Replace;
function Replace
(This : in out Input;
From, To : in Natural;
New_Text : in String)
return Boolean is
begin
return fl_input_replace
(This.Void_Ptr,
Interfaces.C.int (From),
Interfaces.C.int (To),
Interfaces.C.To_C (New_Text, False),
New_Text'Length) /= 0;
end Replace;
function Get_Value
(This : in Input)
return String
is
Ptr : Interfaces.C.Strings.chars_ptr := fl_input_get_value (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_Value;
procedure Set_Value
(This : in out Input;
To : in String)
is
Result : Interfaces.C.int := fl_input_set_value
(This.Void_Ptr, Interfaces.C.To_C (To), To'Length);
begin
null;
end Set_Value;
function Set_Value
(This : in out Input;
To : in String)
return Boolean is
begin
return fl_input_set_value
(This.Void_Ptr,
Interfaces.C.To_C (To, False),
To'Length) /= 0;
end Set_Value;
function Get_Maximum_Size
(This : in Input)
return Natural is
begin
return Natural (fl_input_get_maximum_size (This.Void_Ptr));
end Get_Maximum_Size;
procedure Set_Maximum_Size
(This : in out Input;
To : in Natural) is
begin
fl_input_set_maximum_size (This.Void_Ptr, Interfaces.C.int (To));
end Set_Maximum_Size;
function Size
(This : in Input)
return Natural is
begin
return Natural (fl_input_get_size (This.Void_Ptr));
end Size;
function Get_Cursor_Color
(This : in Input)
return Color is
begin
return Color (fl_input_get_cursor_color (This.Void_Ptr));
end Get_Cursor_Color;
procedure Set_Cursor_Color
(This : in out Input;
To : in Color) is
begin
fl_input_set_cursor_color (This.Void_Ptr, Interfaces.C.unsigned (To));
end Set_Cursor_Color;
function Get_Text_Color
(This : in Input)
return Color is
begin
return Color (fl_input_get_textcolor (This.Void_Ptr));
end Get_Text_Color;
procedure Set_Text_Color
(This : in out Input;
To : in Color) is
begin
fl_input_set_textcolor (This.Void_Ptr, Interfaces.C.unsigned (To));
end Set_Text_Color;
function Get_Text_Font
(This : in Input)
return Font_Kind is
begin
return Font_Kind'Val (fl_input_get_textfont (This.Void_Ptr));
end Get_Text_Font;
procedure Set_Text_Font
(This : in out Input;
To : in Font_Kind) is
begin
fl_input_set_textfont (This.Void_Ptr, Font_Kind'Pos (To));
end Set_Text_Font;
function Get_Text_Size
(This : in Input)
return Font_Size is
begin
return Font_Size (fl_input_get_textsize (This.Void_Ptr));
end Get_Text_Size;
procedure Set_Text_Size
(This : in out Input;
To : in Font_Size) is
begin
fl_input_set_textsize (This.Void_Ptr, Interfaces.C.int (To));
end Set_Text_Size;
procedure Resize
(This : in out Input;
W, H : in Integer) is
begin
fl_input_set_size (This.Void_Ptr, Interfaces.C.int (W), Interfaces.C.int (H));
end Resize;
procedure Resize
(This : in out Input;
X, Y, W, H : in Integer) is
begin
fl_input_resize
(This.Void_Ptr,
Interfaces.C.int (X),
Interfaces.C.int (Y),
Interfaces.C.int (W),
Interfaces.C.int (H));
end Resize;
package body Extra is
procedure Set_Input_Type
(This : in out Input;
To : in Input_Kind) is
begin
fl_input_set_input_type (This.Void_Ptr, Input_Kind_Values (To));
end Set_Input_Type;
pragma Inline (Set_Input_Type);
end Extra;
end FLTK.Widgets.Inputs;
|