From 63d9e14dd0cccb2191bd18ec07cfb11d06a30fcd Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 24 May 2016 02:25:30 +1000 Subject: It's a start --- src/fltk_binding/fltk-widget-input.ads | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/fltk_binding/fltk-widget-input.ads (limited to 'src/fltk_binding/fltk-widget-input.ads') diff --git a/src/fltk_binding/fltk-widget-input.ads b/src/fltk_binding/fltk-widget-input.ads new file mode 100644 index 0000000..c537aef --- /dev/null +++ b/src/fltk_binding/fltk-widget-input.ads @@ -0,0 +1,22 @@ + + +package FLTK.Widget.Input is + + + type Input_Type is new Widget_Type with private; + + + function Create (X, Y, W, H : Integer; Label : String) return Input_Type; + + +private + + + type Input_Type is new Widget_Type with null record; + + + overriding procedure Finalize (This : in out Input_Type); + + +end FLTK.Widget.Input; + -- cgit