summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-button-repeat.ads
blob: d7cd383d2fb8649a5bbda16ae7d09a35fc9306c4 (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.Repeat is


    type Repeat_Type is new Button_Type with private;


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


private


    type Repeat_Type is new Button_Type with null record;


    overriding procedure Finalize (This : in out Repeat_Type);


end FLTK.Widget.Button.Repeat;