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
|
-- Programmed by Jedidiah Barber
-- Released into the public domain
with
Ada.Assertions,
Interfaces.C;
use type
Interfaces.C.int;
package body FLTK.Widgets.Groups.Color_Choosers is
package Chk renames Ada.Assertions;
------------------------
-- Functions From C --
------------------------
function new_fl_color_chooser
(X, Y, W, H : in Interfaces.C.int;
Text : in Interfaces.C.char_array)
return Storage.Integer_Address;
pragma Import (C, new_fl_color_chooser, "new_fl_color_chooser");
pragma Inline (new_fl_color_chooser);
procedure free_fl_color_chooser
(W : in Storage.Integer_Address);
pragma Import (C, free_fl_color_chooser, "free_fl_color_chooser");
pragma Inline (free_fl_color_chooser);
function fl_color_chooser_r
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_r, "fl_color_chooser_r");
pragma Inline (fl_color_chooser_r);
function fl_color_chooser_g
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_g, "fl_color_chooser_g");
pragma Inline (fl_color_chooser_g);
function fl_color_chooser_b
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_b, "fl_color_chooser_b");
pragma Inline (fl_color_chooser_b);
function fl_color_chooser_rgb
(N : in Storage.Integer_Address;
R, G, B : in Interfaces.C.double)
return Interfaces.C.int;
pragma Import (C, fl_color_chooser_rgb, "fl_color_chooser_rgb");
pragma Inline (fl_color_chooser_rgb);
function fl_color_chooser_hue
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_hue, "fl_color_chooser_hue");
pragma Inline (fl_color_chooser_hue);
function fl_color_chooser_saturation
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_saturation, "fl_color_chooser_saturation");
pragma Inline (fl_color_chooser_saturation);
function fl_color_chooser_value
(N : in Storage.Integer_Address)
return Interfaces.C.double;
pragma Import (C, fl_color_chooser_value, "fl_color_chooser_value");
pragma Inline (fl_color_chooser_value);
function fl_color_chooser_hsv
(N : in Storage.Integer_Address;
H, S, V : in Interfaces.C.double)
return Interfaces.C.int;
pragma Import (C, fl_color_chooser_hsv, "fl_color_chooser_hsv");
pragma Inline (fl_color_chooser_hsv);
procedure fl_color_chooser_hsv2rgb
(H, S, V : in Interfaces.C.double;
R, G, B : out Interfaces.C.double);
pragma Import (C, fl_color_chooser_hsv2rgb, "fl_color_chooser_hsv2rgb");
pragma Inline (fl_color_chooser_hsv2rgb);
procedure fl_color_chooser_rgb2hsv
(R, G, B : in Interfaces.C.double;
H, S, V : out Interfaces.C.double);
pragma Import (C, fl_color_chooser_rgb2hsv, "fl_color_chooser_rgb2hsv");
pragma Inline (fl_color_chooser_rgb2hsv);
function fl_color_chooser_get_mode
(N : in Storage.Integer_Address)
return Interfaces.C.int;
pragma Import (C, fl_color_chooser_get_mode, "fl_color_chooser_get_mode");
pragma Inline (fl_color_chooser_get_mode);
procedure fl_color_chooser_set_mode
(N : in Storage.Integer_Address;
M : in Interfaces.C.int);
pragma Import (C, fl_color_chooser_set_mode, "fl_color_chooser_set_mode");
pragma Inline (fl_color_chooser_set_mode);
procedure fl_color_chooser_draw
(W : in Storage.Integer_Address);
pragma Import (C, fl_color_chooser_draw, "fl_color_chooser_draw");
pragma Inline (fl_color_chooser_draw);
function fl_color_chooser_handle
(W : in Storage.Integer_Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_color_chooser_handle, "fl_color_chooser_handle");
pragma Inline (fl_color_chooser_handle);
-------------------
-- Destructors --
-------------------
procedure Extra_Final
(This : in out Color_Chooser) is
begin
Extra_Final (Group (This));
end Extra_Final;
procedure Finalize
(This : in out Color_Chooser) is
begin
Extra_Final (This);
if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
free_fl_color_chooser (This.Void_Ptr);
This.Void_Ptr := Null_Pointer;
end if;
end Finalize;
--------------------
-- Constructors --
--------------------
procedure Extra_Init
(This : in out Color_Chooser;
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 Color_Chooser) is
begin
This.Draw_Ptr := fl_color_chooser_draw'Address;
This.Handle_Ptr := fl_color_chooser_handle'Address;
end Initialize;
package body Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Color_Chooser is
begin
return This : Color_Chooser do
This.Void_Ptr := new_fl_color_chooser
(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 --
-----------------------
function Get_Red
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_r (This.Void_Ptr));
end Get_Red;
function Get_Green
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_g (This.Void_Ptr));
end Get_Green;
function Get_Blue
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_b (This.Void_Ptr));
end Get_Blue;
procedure Set_RGB
(This : in out Color_Chooser;
R, G, B : in Long_Float)
is
Result : Interfaces.C.int := fl_color_chooser_rgb
(This.Void_Ptr,
Interfaces.C.double (R),
Interfaces.C.double (G),
Interfaces.C.double (B));
begin
pragma Assert (Result in 0 .. 1);
exception
when Chk.Assertion_Error => raise Internal_FLTK_Error;
end Set_RGB;
function Set_RGB
(This : in out Color_Chooser;
R, G, B : in Long_Float)
return Boolean
is
Result : Interfaces.C.int := fl_color_chooser_rgb
(This.Void_Ptr,
Interfaces.C.double (R),
Interfaces.C.double (G),
Interfaces.C.double (B));
begin
return Boolean'Val (Result);
exception
when Constraint_Error => raise Internal_FLTK_Error;
end Set_RGB;
function Get_Hue
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_hue (This.Void_Ptr));
end Get_Hue;
function Get_Saturation
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_saturation (This.Void_Ptr));
end Get_Saturation;
function Get_Value
(This : in Color_Chooser)
return Long_Float is
begin
return Long_Float (fl_color_chooser_value (This.Void_Ptr));
end Get_Value;
procedure Set_HSV
(This : in out Color_Chooser;
H, S, V : in Long_Float)
is
Result : Interfaces.C.int := fl_color_chooser_hsv
(This.Void_Ptr,
Interfaces.C.double (H),
Interfaces.C.double (S),
Interfaces.C.double (V));
begin
pragma Assert (Result in 0 .. 1);
exception
when Chk.Assertion_Error => raise Internal_FLTK_Error;
end Set_HSV;
function Set_HSV
(This : in out Color_Chooser;
H, S, V : in Long_Float)
return Boolean
is
Result : Interfaces.C.int := fl_color_chooser_hsv
(This.Void_Ptr,
Interfaces.C.double (H),
Interfaces.C.double (S),
Interfaces.C.double (V));
begin
return Boolean'Val (Result);
exception
when Constraint_Error => raise Internal_FLTK_Error;
end Set_HSV;
procedure HSV_To_RGB
(H, S, V : in Long_Float;
R, G, B : out Long_Float) is
begin
fl_color_chooser_hsv2rgb
(Interfaces.C.double (H),
Interfaces.C.double (S),
Interfaces.C.double (V),
Interfaces.C.double (R),
Interfaces.C.double (G),
Interfaces.C.double (B));
end HSV_To_RGB;
procedure RGB_To_HSV
(R, G, B : in Long_Float;
H, S, V : out Long_Float) is
begin
fl_color_chooser_rgb2hsv
(Interfaces.C.double (R),
Interfaces.C.double (G),
Interfaces.C.double (B),
Interfaces.C.double (H),
Interfaces.C.double (S),
Interfaces.C.double (V));
end RGB_To_HSV;
function Get_Mode
(This : in Color_Chooser)
return Color_Mode is
begin
return Color_Mode'Val (fl_color_chooser_get_mode (This.Void_Ptr));
end Get_Mode;
procedure Set_Mode
(This : in out Color_Chooser;
To : in Color_Mode) is
begin
fl_color_chooser_set_mode (This.Void_Ptr, Color_Mode'Pos (To));
end Set_Mode;
end FLTK.Widgets.Groups.Color_Choosers;
|