summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-charts.adb
blob: 078a64defadc6cb7cd6861143f3fe861b8974dc1 (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
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


with

    Interfaces.C,
    System;

use type

    Interfaces.C.int,
    System.Address;


package body FLTK.Widgets.Charts is


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

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




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

    procedure free_fl_chart
           (B : in System.Address);
    pragma Import (C, free_fl_chart, "free_fl_chart");
    pragma Inline (free_fl_chart);




    procedure fl_chart_add
           (C : in System.Address;
            V : in Interfaces.C.double;
            L : in Interfaces.C.char_array;
            P : in Interfaces.C.unsigned);
    pragma Import (C, fl_chart_add, "fl_chart_add");
    pragma Inline (fl_chart_add);

    procedure fl_chart_insert
           (C : in System.Address;
            I : in Interfaces.C.int;
            V : in Interfaces.C.double;
            L : in Interfaces.C.char_array;
            P : in Interfaces.C.unsigned);
    pragma Import (C, fl_chart_insert, "fl_chart_insert");
    pragma Inline (fl_chart_insert);

    procedure fl_chart_replace
           (C : in System.Address;
            I : in Interfaces.C.int;
            V : in Interfaces.C.double;
            L : in Interfaces.C.char_array;
            P : in Interfaces.C.unsigned);
    pragma Import (C, fl_chart_replace, "fl_chart_replace");
    pragma Inline (fl_chart_replace);

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




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

    procedure fl_chart_set_autosize
           (C : in System.Address;
            A : in Interfaces.C.int);
    pragma Import (C, fl_chart_set_autosize, "fl_chart_set_autosize");
    pragma Inline (fl_chart_set_autosize);

    procedure fl_chart_get_bounds
           (C    : in     System.Address;
            L, U :    out Interfaces.C.double);
    pragma Import (C, fl_chart_get_bounds, "fl_chart_get_bounds");
    pragma Inline (fl_chart_get_bounds);

    procedure fl_chart_set_bounds
           (C    : in System.Address;
            L, U : in Interfaces.C.double);
    pragma Import (C, fl_chart_set_bounds, "fl_chart_set_bounds");
    pragma Inline (fl_chart_set_bounds);

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

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

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




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

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

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

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

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

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




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




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

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




    procedure Finalize
           (This : in out Chart) is
    begin
        if  This.Void_Ptr /= System.Null_Address and then
            This in Chart'Class
        then
            free_fl_chart (This.Void_Ptr);
            This.Void_Ptr := System.Null_Address;
        end if;
        Finalize (Widget (This));
    end Finalize;




    package body Forge is

        function Create
               (X, Y, W, H : in Integer;
                Text       : in String)
            return Chart is
        begin
            return This : Chart do
                This.Void_Ptr := new_fl_chart
                       (Interfaces.C.int (X),
                        Interfaces.C.int (Y),
                        Interfaces.C.int (W),
                        Interfaces.C.int (H),
                        Interfaces.C.To_C (Text));
                fl_widget_set_user_data
                       (This.Void_Ptr,
                        Widget_Convert.To_Address (This'Unchecked_Access));
                chart_set_draw_hook (This.Void_Ptr, Draw_Hook'Address);
                chart_set_handle_hook (This.Void_Ptr, Handle_Hook'Address);
            end return;
        end Create;

    end Forge;




    procedure Add
           (This       : in out Chart;
            Data_Value : in     Long_Float;
            Data_Label : in     String := "";
            Data_Color : in     Color := No_Color) is
    begin
        fl_chart_add
           (This.Void_Ptr,
            Interfaces.C.double (Data_Value),
            Interfaces.C.To_C (Data_Label),
            Interfaces.C.unsigned (Data_Color));
    end Add;


    procedure Insert
           (This       : in out Chart;
            Position   : in     Natural;
            Data_Value : in     Long_Float;
            Data_Label : in     String := "";
            Data_Color : in     Color := No_Color) is
    begin
        fl_chart_insert
           (This.Void_Ptr,
            Interfaces.C.int (Position),
            Interfaces.C.double (Data_Value),
            Interfaces.C.To_C (Data_Label),
            Interfaces.C.unsigned (Data_Color));
    end Insert;


    procedure Replace
           (This       : in out Chart;
            Position   : in     Natural;
            Data_Value : in     Long_Float;
            Data_Label : in     String := "";
            Data_Color : in     Color := No_Color) is
    begin
        fl_chart_replace
           (This.Void_Ptr,
            Interfaces.C.int (Position),
            Interfaces.C.double (Data_Value),
            Interfaces.C.To_C (Data_Label),
            Interfaces.C.unsigned (Data_Color));
    end Replace;


    procedure Clear
           (This : in out Chart) is
    begin
        fl_chart_clear (This.Void_Ptr);
    end Clear;




    function Will_Autosize
           (This : in Chart)
        return Boolean is
    begin
        return fl_chart_get_autosize (This.Void_Ptr) /= 0;
    end Will_Autosize;


    procedure Set_Autosize
           (This : in out Chart;
            To   : in     Boolean) is
    begin
        fl_chart_set_autosize (This.Void_Ptr, Boolean'Pos (To));
    end Set_Autosize;


    procedure Get_Bounds
           (This         : in     Chart;
            Lower, Upper :    out Long_Float) is
    begin
        fl_chart_get_bounds
           (This.Void_Ptr,
            Interfaces.C.double (Lower),
            Interfaces.C.double (Upper));
    end Get_Bounds;


    procedure Set_Bounds
           (This         : in out Chart;
            Lower, Upper : in     Long_Float) is
    begin
        fl_chart_set_bounds
           (This.Void_Ptr,
            Interfaces.C.double (Lower),
            Interfaces.C.double (Upper));
    end Set_Bounds;


    function Get_Maximum_Size
           (This : in Chart)
        return Natural is
    begin
        return Natural (fl_chart_get_maxsize (This.Void_Ptr));
    end Get_Maximum_Size;


    procedure Set_Maximum_Size
           (This : in out Chart;
            To   : in     Natural) is
    begin
        fl_chart_set_maxsize (This.Void_Ptr, Interfaces.C.int (To));
    end Set_Maximum_Size;


    function Get_Size
           (This : in Chart)
        return Natural is
    begin
        return Natural (fl_chart_size (This.Void_Ptr));
    end Get_Size;




    function Get_Text_Color
           (This : in Chart)
        return Color is
    begin
        return Color (fl_chart_get_textcolor (This.Void_Ptr));
    end Get_Text_Color;


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


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


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


    function Get_Text_Size
           (This : in Chart)
        return Font_Size is
    begin
        return Font_Size (fl_chart_get_textsize (This.Void_Ptr));
    end Get_Text_Size;


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




    procedure Resize
           (This : in out Chart;
            W, H : in     Integer) is
    begin
        fl_chart_size2 (This.Void_Ptr, Interfaces.C.int (W), Interfaces.C.int (H));
    end Resize;




    procedure Draw
           (This : in out Chart) is
    begin
        fl_chart_draw (This.Void_Ptr);
    end Draw;


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


end FLTK.Widgets.Charts;