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