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


with FLTK.Enums; use FLTK.Enums;


package FLTK.Widgets is


    type Widget is abstract new Wrapper with private;
    type Widget_Access is access all Widget;


    type Font_Size is new Natural;
    Normal_Size : constant Font_Size := 14;


    type Color is new Natural;


    function Create
           (X, Y, W, H : in Integer;
            Label      : in String)
        return Widget is abstract;


    function Get_Box
           (W : in Widget'Class)
        return Box_Kind;


    procedure Set_Box
           (W : in out Widget'Class;
            B : in     Box_Kind);


    function Get_Label_Font
           (W : in Widget'Class)
        return Font_Kind;


    procedure Set_Label_Font
           (W : in out Widget'Class;
            F : in     Font_Kind);


    function Get_Label_Size
           (W : in Widget'Class)
        return Font_Size;


    procedure Set_Label_Size
           (W : in out Widget'Class;
            S : in     Font_Size);


    function Get_Label_Type
           (W : in Widget'Class)
        return Label_Kind;


    procedure Set_Label_Type
           (W : in out Widget'Class;
            L : in     Label_Kind);


private


    type Widget is abstract new Wrapper with null record;


end FLTK.Widgets;