summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-input_choices.adb
blob: 223e33dd9eda6a933b3338d829735de3fa308d3b (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


with

    Ada.Unchecked_Deallocation,
    Interfaces.C.Strings,
    System;

use type

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


package body FLTK.Widgets.Groups.Input_Choices is


    procedure input_choice_set_draw_hook
           (W, D : in System.Address);
    pragma Import (C, input_choice_set_draw_hook, "input_choice_set_draw_hook");
    pragma Inline (input_choice_set_draw_hook);

    procedure input_choice_set_handle_hook
           (W, H : in System.Address);
    pragma Import (C, input_choice_set_handle_hook, "input_choice_set_handle_hook");
    pragma Inline (input_choice_set_handle_hook);




    function new_fl_input_choice
           (X, Y, W, H : in Interfaces.C.int;
            Text       : in Interfaces.C.char_array)
        return System.Address;
    pragma Import (C, new_fl_input_choice, "new_fl_input_choice");
    pragma Inline (new_fl_input_choice);

    procedure free_fl_input_choice
           (W : in System.Address);
    pragma Import (C, free_fl_input_choice, "free_fl_input_choice");
    pragma Inline (free_fl_input_choice);




    function fl_input_choice_input
           (N : in System.Address)
        return System.Address;
    pragma Import (C, fl_input_choice_input, "fl_input_choice_input");
    pragma Inline (fl_input_choice_input);

    function fl_input_choice_menubutton
           (N : in System.Address)
        return System.Address;
    pragma Import (C, fl_input_choice_menubutton, "fl_input_choice_menubutton");
    pragma Inline (fl_input_choice_menubutton);




    procedure fl_input_choice_clear
           (N : in System.Address);
    pragma Import (C, fl_input_choice_clear, "fl_input_choice_clear");
    pragma Inline (fl_input_choice_clear);




    function fl_input_choice_changed
           (N : in System.Address)
        return Interfaces.C.int;
    pragma Import (C, fl_input_choice_changed, "fl_input_choice_changed");
    pragma Inline (fl_input_choice_changed);

    procedure fl_input_choice_clear_changed
           (N : in System.Address);
    pragma Import (C, fl_input_choice_clear_changed, "fl_input_choice_clear_changed");
    pragma Inline (fl_input_choice_clear_changed);

    procedure fl_input_choice_set_changed
           (N : in System.Address);
    pragma Import (C, fl_input_choice_set_changed, "fl_input_choice_set_changed");
    pragma Inline (fl_input_choice_set_changed);

    function fl_input_choice_get_down_box
           (N : in System.Address)
        return Interfaces.C.int;
    pragma Import (C, fl_input_choice_get_down_box, "fl_input_choice_get_down_box");
    pragma Inline (fl_input_choice_get_down_box);

    procedure fl_input_choice_set_down_box
           (N : in System.Address;
            T : in Interfaces.C.int);
    pragma Import (C, fl_input_choice_set_down_box, "fl_input_choice_set_down_box");
    pragma Inline (fl_input_choice_set_down_box);

    function fl_input_choice_get_textcolor
           (N : in System.Address)
        return Interfaces.C.unsigned;
    pragma Import (C, fl_input_choice_get_textcolor, "fl_input_choice_get_textcolor");
    pragma Inline (fl_input_choice_get_textcolor);

    procedure fl_input_choice_set_textcolor
           (N : in System.Address;
            T : in Interfaces.C.unsigned);
    pragma Import (C, fl_input_choice_set_textcolor, "fl_input_choice_set_textcolor");
    pragma Inline (fl_input_choice_set_textcolor);

    function fl_input_choice_get_textfont
           (N : in System.Address)
        return Interfaces.C.int;
    pragma Import (C, fl_input_choice_get_textfont, "fl_input_choice_get_textfont");
    pragma Inline (fl_input_choice_get_textfont);

    procedure fl_input_choice_set_textfont
           (N : in System.Address;
            T : in Interfaces.C.int);
    pragma Import (C, fl_input_choice_set_textfont, "fl_input_choice_set_textfont");
    pragma Inline (fl_input_choice_set_textfont);

    function fl_input_choice_get_textsize
           (N : in System.Address)
        return Interfaces.C.int;
    pragma Import (C, fl_input_choice_get_textsize, "fl_input_choice_get_textsize");
    pragma Inline (fl_input_choice_get_textsize);

    procedure fl_input_choice_set_textsize
           (N : in System.Address;
            T : in Interfaces.C.int);
    pragma Import (C, fl_input_choice_set_textsize, "fl_input_choice_set_textsize");
    pragma Inline (fl_input_choice_set_textsize);

    function fl_input_choice_get_value
           (N : in System.Address)
        return Interfaces.C.Strings.chars_ptr;
    pragma Import (C, fl_input_choice_get_value, "fl_input_choice_get_value");
    pragma Inline (fl_input_choice_get_value);

    procedure fl_input_choice_set_value
           (N : in System.Address;
            T : in Interfaces.C.char_array);
    pragma Import (C, fl_input_choice_set_value, "fl_input_choice_set_value");
    pragma Inline (fl_input_choice_set_value);

    procedure fl_input_choice_set_value2
           (N : in System.Address;
            T : in Interfaces.C.int);
    pragma Import (C, fl_input_choice_set_value2, "fl_input_choice_set_value2");
    pragma Inline (fl_input_choice_set_value2);




    procedure fl_input_choice_draw
           (W : in System.Address);
    pragma Import (C, fl_input_choice_draw, "fl_input_choice_draw");
    pragma Inline (fl_input_choice_draw);

    function fl_input_choice_handle
           (W : in System.Address;
            E : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_input_choice_handle, "fl_input_choice_handle");
    pragma Inline (fl_input_choice_handle);




    procedure Free is new Ada.Unchecked_Deallocation
        (INP.Input, Input_Access);
    procedure Free is new Ada.Unchecked_Deallocation
        (MB.Menu_Button, Menu_Button_Access);




    procedure Finalize
           (This : in out Input_Choice) is
    begin
        if  This.Void_Ptr /= System.Null_Address and then
            This in Input_Choice'Class
        then
            Group (This).Clear;
            free_fl_input_choice (This.Void_Ptr);
            Free (This.My_Input);
            Free (This.My_Menu_Button);
            This.Void_Ptr := System.Null_Address;
        end if;
        Finalize (Group (This));
    end Finalize;




    package body Forge is

        function Create
               (X, Y, W, H : in Integer;
                Text       : in String)
            return Input_Choice is
        begin
            return This : Input_Choice do
                This.Void_Ptr := new_fl_input_choice
                       (Interfaces.C.int (X),
                        Interfaces.C.int (Y),
                        Interfaces.C.int (W),
                        Interfaces.C.int (H),
                        Interfaces.C.To_C (Text));
                fl_group_end (This.Void_Ptr);
                fl_widget_set_user_data
                       (This.Void_Ptr,
                        Widget_Convert.To_Address (This'Unchecked_Access));
                input_choice_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
                input_choice_set_handle_hook (This.Void_Ptr, Handle_Hook'Address);

                This.My_Input := new INP.Input;
                Wrapper (This.My_Input.all).Void_Ptr :=
                    fl_input_choice_input (This.Void_Ptr);
                Wrapper (This.My_Input.all).Needs_Dealloc := False;

                This.My_Menu_Button := new MB.Menu_Button;
                Wrapper (This.My_Menu_Button.all).Void_Ptr :=
                    fl_input_choice_menubutton (This.Void_Ptr);
                Wrapper (This.My_Menu_Button.all).Needs_Dealloc := False;
            end return;
        end Create;

    end Forge;




    function Input
           (This : in out Input_Choice)
        return INP.Input_Reference is
    begin
        return (Data => This.My_Input);
    end Input;


    function Menu_Button
           (This : in out Input_Choice)
        return MB.Menu_Button_Reference is
    begin
        return (Data => This.My_Menu_Button);
    end Menu_Button;




    procedure Clear
           (This : in out Input_Choice) is
    begin
        fl_input_choice_clear (This.Void_Ptr);
    end Clear;




    function Has_Changed
           (This : in Input_Choice)
        return Boolean is
    begin
        return fl_input_choice_changed (This.Void_Ptr) /= 0;
    end Has_Changed;


    procedure Clear_Changed
           (This : in out Input_Choice) is
    begin
        fl_input_choice_clear_changed (This.Void_Ptr);
    end Clear_Changed;


    procedure Set_Changed
           (This : in out Input_Choice;
            To   : in     Boolean) is
    begin
        if To then
            fl_input_choice_set_changed (This.Void_Ptr);
        end if;
    end Set_Changed;


    function Get_Down_Box
           (This : in Input_Choice)
        return Box_Kind is
    begin
        return Box_Kind'Val (fl_input_choice_get_down_box (This.Void_Ptr));
    end Get_Down_Box;


    procedure Set_Down_Box
           (This : in out Input_Choice;
            To   : in     Box_Kind) is
    begin
        fl_input_choice_set_down_box (This.Void_Ptr, Box_Kind'Pos (To));
    end Set_Down_Box;


    function Get_Text_Color
           (This : in Input_Choice)
        return Color is
    begin
        return Color (fl_input_choice_get_textcolor (This.Void_Ptr));
    end Get_Text_Color;


    procedure Set_Text_Color
           (This : in out Input_Choice;
            To   : in     Color) is
    begin
        fl_input_choice_set_textcolor (This.Void_Ptr, Interfaces.C.unsigned (To));
    end Set_Text_Color;


    function Get_Text_Font
           (This : in Input_Choice)
        return Font_Kind is
    begin
        return Font_Kind'Val (fl_input_choice_get_textfont (This.Void_Ptr));
    end Get_Text_Font;


    procedure Set_Text_Font
           (This : in out Input_Choice;
            To   : in     Font_Kind) is
    begin
        fl_input_choice_set_textfont (This.Void_Ptr, Font_Kind'Pos (To));
    end Set_Text_Font;


    function Get_Text_Size
           (This : in Input_Choice)
        return Font_Size is
    begin
        return Font_Size (fl_input_choice_get_textsize (This.Void_Ptr));
    end Get_Text_Size;


    procedure Set_Text_Size
           (This : in out Input_Choice;
            To   : in     Font_Size) is
    begin
        fl_input_choice_set_textsize (This.Void_Ptr, Interfaces.C.int (To));
    end Set_Text_Size;


    function Get_Input
           (This : in Input_Choice)
        return String
    is
        Ptr : Interfaces.C.Strings.chars_ptr := fl_input_choice_get_value (This.Void_Ptr);
    begin
        if Ptr = Interfaces.C.Strings.Null_Ptr then
            return "";
        else
            --  pointer to internal buffer so no free necessary
            return Interfaces.C.Strings.Value (Ptr);
        end if;
    end Get_Input;


    procedure Set_Input
           (This : in out Input_Choice;
            To   : in     String) is
    begin
        fl_input_choice_set_value (This.Void_Ptr, Interfaces.C.To_C (To));
    end Set_Input;


    procedure Set_Item
           (This : in out Input_Choice;
            Num  : in     Integer) is
    begin
        fl_input_choice_set_value2 (This.Void_Ptr, Interfaces.C.int (Num));
    end Set_Item;




    procedure Draw
           (This : in out Input_Choice) is
    begin
        fl_input_choice_draw (This.Void_Ptr);
    end Draw;


    function Handle
           (This  : in out Input_Choice;
            Event : in     Event_Kind)
        return Event_Outcome is
    begin
        return Event_Outcome'Val
               (fl_input_choice_handle (This.Void_Ptr, Event_Kind'Pos (Event)));
    end Handle;


end FLTK.Widgets.Groups.Input_Choices;