summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-button-light-round.ads
blob: e440b1a21ffdf4ff9ee38a72b2f7e932eb8793be (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


package FLTK.Widget.Button.Light.Round is


    type Round_Type is new Light_Type with private;


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


private


    type Round_Type is new Light_Type with null record;


    overriding procedure Finalize (This : in out Round_Type);


end FLTK.Widget.Button.Light.Round;