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
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
with
FLTK.Labels,
FLTK.Widgets.Groups.Windows;
private with
Ada.Finalization,
Ada.Unchecked_Conversion,
FLTK.Args_Marshal,
Interfaces.C.Strings;
package FLTK.Static is
-- Input is the argument index usable with Ada.Command_Line.
-- Output is how many arguments parsed starting from that index.
type Args_Handler is access function
(Index : in Positive)
return Natural;
type Awake_Handler is access procedure;
type Idle_Handler is access procedure;
type Timeout_Handler is access procedure;
type Buffer_Kind is (Selection, Clipboard);
type Clipboard_Notify_Handler is access procedure
(Kind : in Buffer_Kind);
type File_Descriptor is new Integer;
type File_Mode is record
Read : Boolean := False;
Write : Boolean := False;
Except : Boolean := False;
end record;
function "+" (Left, Right : in File_Mode) return File_Mode;
function "-" (Left, Right : in File_Mode) return File_Mode;
Read_Mode : constant File_Mode;
Write_Mode : constant File_Mode;
Except_Mode : constant File_Mode;
type File_Handler is access procedure
(FD : in File_Descriptor);
subtype Byte_Integer is Integer range 0 .. 255;
type Box_Draw_Function is access procedure
(X, Y, W, H : in Integer;
Tone : in Color);
type Label_Draw_Function is access procedure
(Item : in FLTK.Labels.Label'Class;
X, Y, W, H : in Integer;
Position : in Alignment);
type Label_Measure_Function is access procedure
(Item : in FLTK.Labels.Label'Class;
W, H : out Integer);
type Option is
(Arrow_Focus,
Visible_Focus,
DND_Text,
Show_Tooltips,
FNFC_Uses_GTK);
-- According to docs this should be customisable,
-- but in C++ it is a constant pointer to constant.
Help_Message : constant String;
Argument_Error : exception;
-- Command Line Arguments --
function Parse_Arg
(Index : in Positive)
return Natural;
procedure Parse_Args;
-- Not task safe, but you won't need to call this more than once anyway.
procedure Parse_Args
(Count : out Natural;
Func : in Args_Handler := null);
-- Thread Notify --
-- Unsure if it is worth actually using this or if mixing tasks, pthreads,
-- and whatever other platforms use causes errors in some unexpected way.
-- Might be better to rely on FLTK.Check, Ada tasking, and Ada protected types.
-- You'll need appropriately declared protected objects to pass messages anyway.
procedure Add_Awake_Handler
(Func : in Awake_Handler);
function Get_Awake_Handler
return Awake_Handler;
procedure Awake
(Func : in Awake_Handler);
procedure Awake;
procedure Lock;
procedure Unlock;
-- Pre-Eventloop Callbacks --
procedure Add_Check
(Func : in not null Timeout_Handler);
function Has_Check
(Func : in not null Timeout_Handler)
return Boolean;
procedure Remove_Check
(Func : in not null Timeout_Handler);
-- Timer Callbacks --
procedure Add_Timeout
(Seconds : in Long_Float;
Func : in not null Timeout_Handler);
function Has_Timeout
(Func : in not null Timeout_Handler)
return Boolean;
procedure Remove_Timeout
(Func : in not null Timeout_Handler);
procedure Repeat_Timeout
(Seconds : in Long_Float;
Func : in not null Timeout_Handler);
-- Clipboard Callbacks --
procedure Add_Clipboard_Notify
(Func : in not null Clipboard_Notify_Handler);
procedure Remove_Clipboard_Notify
(Func : in not null Clipboard_Notify_Handler);
-- File Descriptor Waiting Callbacks --
procedure Add_File_Descriptor
(FD : in File_Descriptor;
Func : in not null File_Handler);
procedure Add_File_Descriptor
(FD : in File_Descriptor;
Mode : in File_Mode;
Func : in not null File_Handler);
procedure Remove_File_Descriptor
(FD : in File_Descriptor);
procedure Remove_File_Descriptor
(FD : in File_Descriptor;
Mode : in File_Mode);
-- Idle Callbacks --
procedure Add_Idle
(Func : in not null Idle_Handler);
function Has_Idle
(Func : in not null Idle_Handler)
return Boolean;
procedure Remove_Idle
(Func : in not null Idle_Handler);
-- Custom Colors --
function Get_Color
(From : in Color)
return Color;
procedure Get_Color
(From : in Color;
R, G, B : out Color_Component);
procedure Set_Color
(Target, Source : in Color);
procedure Set_Color
(Target : in Color;
R, G, B : in Color_Component);
procedure Free_Color
(Value : in Color;
Overlay : in Boolean := False);
function Get_Box_Color
(Tone : in Color)
return Color;
procedure Set_Box_Color
(Tone : in Color);
procedure Own_Colormap;
procedure Set_Foreground
(R, G, B : in Color_Component);
procedure Set_Background
(R, G, B : in Color_Component);
procedure Set_Alt_Background
(R, G, B : in Color_Component);
procedure System_Colors;
-- Custom Fonts --
function Font_Image
(Kind : in Font_Kind)
return String;
function Font_Family_Image
(Kind : in Font_Kind)
return String;
procedure Set_Font_Kind
(Target, Source : in Font_Kind);
procedure Set_Font_Kind
(Target : in Font_Kind;
Source : in String);
function Font_Sizes
(Kind : in Font_Kind)
return Font_Size_Array;
procedure Setup_Fonts
(How_Many_Set_Up : out Natural);
-- Box_Kind Attributes --
function Get_Box_Height_Offset
(Kind : in Box_Kind)
return Integer;
function Get_Box_Width_Offset
(Kind : in Box_Kind)
return Integer;
function Get_Box_X_Offset
(Kind : in Box_Kind)
return Integer;
function Get_Box_Y_Offset
(Kind : in Box_Kind)
return Integer;
procedure Set_Box_Kind
(To, From : in Box_Kind);
function Draw_Box_Active
return Boolean;
function Get_Box_Draw_Function
(Kind : in Box_Kind)
return 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);
-- Label_Kind Attributes --
procedure Set_Label_Kind
(Target, Source : in Label_Kind);
procedure Set_Label_Draw_Function
(Kind : in Label_Kind;
Draw_Func : in Label_Draw_Function;
Measure_Func : in Label_Measure_Function);
-- Clipboard / Selection --
procedure Copy
(Text : in String;
Dest : in Buffer_Kind);
procedure Paste
(Receiver : in FLTK.Widgets.Widget'Class;
Source : in Buffer_Kind);
procedure Selection
(Owner : in FLTK.Widgets.Widget'Class;
Text : in String);
function Clipboard_Contains
(Kind : in String)
return Boolean;
-- Dragon Drop --
procedure Drag_Drop_Start;
function Get_Drag_Drop_Text_Support
return Boolean;
procedure Set_Drag_Drop_Text_Support
(To : in Boolean);
-- Input Methods --
procedure Enable_System_Input;
procedure Disable_System_Input;
-- Windows --
procedure Default_Window_Close
(Item : in out FLTK.Widgets.Widget'Class);
function Get_First_Window
return access FLTK.Widgets.Groups.Windows.Window'Class;
procedure Set_First_Window
(To : in FLTK.Widgets.Groups.Windows.Window'Class);
function Get_Next_Window
(From : in FLTK.Widgets.Groups.Windows.Window'Class)
return access FLTK.Widgets.Groups.Windows.Window'Class;
function Get_Top_Modal
return access FLTK.Widgets.Groups.Windows.Window'Class;
-- Queue --
function Read_Queue
return access FLTK.Widgets.Widget'Class;
-- Schemes --
function Get_Scheme
return String;
procedure Set_Scheme
(To : in String);
function Is_Scheme
(Scheme : in String)
return Boolean;
procedure Reload_Scheme;
-- Library Options --
function Get_Option
(Opt : in Option)
return Boolean;
procedure Set_Option
(Opt : in Option;
To : in Boolean);
-- Scrollbars --
function Get_Default_Scrollbar_Size
return Natural;
procedure Set_Default_Scrollbar_Size
(To : in Natural);
private
The_Argv : Interfaces.C.Strings.chars_ptr_array := FLTK.Args_Marshal.Create_Argv;
for File_Mode use record
Read at 0 range 0 .. 0;
-- bit position 1 is unused
Write at 0 range 2 .. 2;
Except at 0 range 3 .. 3;
end record;
for File_Mode'Size use Interfaces.C.int'Size;
Read_Mode : constant File_Mode := (Read => True, others => False);
Write_Mode : constant File_Mode := (Write => True, others => False);
Except_Mode : constant File_Mode := (Except => True, others => False);
function FMode_To_Cint is new
Ada.Unchecked_Conversion (File_Mode, Interfaces.C.int);
help_usage_string_ptr : Interfaces.C.Strings.chars_ptr;
pragma Import (C, help_usage_string_ptr, "fl_help_usage_string_ptr");
Help_Message : constant String := Interfaces.C.Strings.Value (help_usage_string_ptr);
Font_Overrides : array (Font_Kind) of Interfaces.C.Strings.chars_ptr;
pragma Import (C, Lock, "fl_static_lock");
pragma Import (C, Unlock, "fl_static_unlock");
pragma Import (C, Own_Colormap, "fl_static_own_colormap");
pragma Import (C, System_Colors, "fl_static_get_system_colors");
pragma Import (C, Enable_System_Input, "fl_static_enable_im");
pragma Import (C, Disable_System_Input, "fl_static_disable_im");
pragma Import (C, Reload_Scheme, "fl_static_reload_scheme");
pragma Inline (Parse_Arg);
pragma Inline (Add_Awake_Handler);
pragma Inline (Get_Awake_Handler);
pragma Inline (Awake);
pragma Inline (Lock);
pragma Inline (Unlock);
pragma Inline (Add_Check);
pragma Inline (Has_Check);
pragma Inline (Remove_Check);
pragma Inline (Add_Timeout);
pragma Inline (Has_Timeout);
pragma Inline (Remove_Timeout);
pragma Inline (Repeat_Timeout);
pragma Inline (Add_Clipboard_Notify);
pragma Inline (Remove_Clipboard_Notify);
pragma Inline (Add_File_Descriptor);
pragma Inline (Remove_File_Descriptor);
pragma Inline (Add_Idle);
pragma Inline (Has_Idle);
pragma Inline (Remove_Idle);
pragma Inline (Get_Color);
pragma Inline (Set_Color);
pragma Inline (Free_Color);
pragma Inline (Get_Box_Color);
pragma Inline (Set_Box_Color);
pragma Inline (Own_Colormap);
pragma Inline (Set_Foreground);
pragma Inline (Set_Background);
pragma Inline (Set_Alt_Background);
pragma Inline (System_Colors);
pragma Inline (Font_Image);
pragma Inline (Font_Family_Image);
pragma Inline (Set_Font_Kind);
pragma Inline (Font_Sizes);
pragma Inline (Setup_Fonts);
pragma Inline (Get_Box_Height_Offset);
pragma Inline (Get_Box_Width_Offset);
pragma Inline (Get_Box_X_Offset);
pragma Inline (Get_Box_Y_Offset);
pragma Inline (Set_Box_Kind);
pragma Inline (Draw_Box_Active);
pragma Inline (Get_Box_Draw_Function);
pragma Inline (Set_Box_Draw_Function);
pragma Inline (Set_Label_Kind);
pragma Inline (Set_Label_Draw_Function);
pragma Inline (Copy);
pragma Inline (Paste);
pragma Inline (Selection);
pragma Inline (Clipboard_Contains);
pragma Inline (Drag_Drop_Start);
pragma Inline (Get_Drag_Drop_Text_Support);
pragma Inline (Set_Drag_Drop_Text_Support);
pragma Inline (Enable_System_Input);
pragma Inline (Disable_System_Input);
pragma Inline (Default_Window_Close);
pragma Inline (Get_First_Window);
pragma Inline (Set_First_Window);
pragma Inline (Get_Next_Window);
pragma Inline (Get_Top_Modal);
pragma Inline (Read_Queue);
pragma Inline (Get_Scheme);
pragma Inline (Set_Scheme);
pragma Inline (Is_Scheme);
pragma Inline (Reload_Scheme);
pragma Inline (Get_Option);
pragma Inline (Set_Option);
pragma Inline (Get_Default_Scrollbar_Size);
pragma Inline (Set_Default_Scrollbar_Size);
-- Needed to dealloc the argv array and deregister the clipboard notify handler
type FLTK_Static_Final_Controller is new Ada.Finalization.Limited_Controlled with null record;
overriding procedure Finalize
(This : in out FLTK_Static_Final_Controller);
Cleanup : FLTK_Static_Final_Controller;
end FLTK.Static;
|