summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-box.ads
blob: 2ce03e7fe1387223a44c8522e6e7e9ef57ea8eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22


package FLTK.Widget.Box is


    type Box_Type is new Widget_Type with private;


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


private


    type Box_Type is new Widget_Type with null record;


    overriding procedure Finalize (This : in out Box_Type);


end FLTK.Widget.Box;