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


--  FLTK.Widget.Button.Return, but return is a reserved word
package FLTK.Widget.Button.Ret is


    type Return_Type is new Button_Type with private;


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


private


    type Return_Type is new Button_Type with null record;


    overriding procedure Finalize (This : in out Return_Type);


end FLTK.Widget.Button.Ret;