summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widgets-groups.ads
blob: aa52083dc07f93963c55c8594947ba7683faf135 (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


private with Ada.Containers.Vectors;


package FLTK.Widgets.Groups is


    type Group is new Widget with private;
    type Index is new Positive;


    function Create
           (X, Y, W, H : in Integer;
            Text       : in String)
        return Group;


    procedure Add
           (This : in out Group;
            Item : in out Widget'Class);


    function Child
           (This  : in Group;
            Place : in Index)
        return Widget_Cursor;


    procedure Clear
           (This : in out Group);


    function Find
           (This : in     Group;
            Item : in out Widget'Class)
        return Index;


    procedure Insert
           (This  : in out Group;
            Item  : in out Widget'Class;
            Place : in     Index);


    procedure Remove
           (This : in out Group;
            Item : in out Widget'Class);


    procedure Remove
           (This  : in out Group;
            Place : in     Index);


private


    type Widget_Access is access all Widget'Class;
    package Widget_Vectors is new Ada.Containers.Vectors (Index, Widget_Access);


    type Group is new Widget with
        record
            Widget_List : Widget_Vectors.Vector;
        end record;


    overriding procedure Initialize
           (This : in out Group);


    overriding procedure Finalize
           (This : in out Group);


end FLTK.Widgets.Groups;