blob: 57faf875cf491248e1481f42917b8ead6c24d324 (
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
 | 
private with System;
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 access Widget'Class;
    function Number_Of_Children
           (This : in Group)
        return Natural;
    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);
    procedure Set_Resizable
           (This : in out Group;
            Item : in     Widget'Class);
private
    type Group is new Widget with null record;
    overriding procedure Finalize
           (This : in out Group);
    procedure fl_group_end
           (G : in System.Address);
    pragma Import (C, fl_group_end, "fl_group_end");
end FLTK.Widgets.Groups;
 |