summaryrefslogtreecommitdiff
path: root/fltk-widget-group-window.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-24 02:25:30 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-24 02:25:30 +1000
commitac5c51b6ee492b504e165408b742d2505e308e94 (patch)
treef0d0dc1bcade720f368f119240a0ade500adf092 /fltk-widget-group-window.ads
It's a start
Diffstat (limited to 'fltk-widget-group-window.ads')
-rw-r--r--fltk-widget-group-window.ads25
1 files changed, 25 insertions, 0 deletions
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;
+