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


package FLTK.Widgets.Buttons is


    type Button is new Widget with private;
    type Button_Access is access all Button;


    type State is (On, Off);


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


    function Get_State
           (B : in Button'Class)
        return State;


    procedure Set_State
           (B : in out Button'Class;
            S : in     State);


    procedure Set_Only
           (B : in out Button'Class);


private


    type Button is new Widget with null record;


    overriding procedure Finalize
           (This : in out Button);


end FLTK.Widgets.Buttons;