summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-group-window.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widget-group-window.ads')
-rw-r--r--src/fltk_binding/fltk-widget-group-window.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fltk_binding/fltk-widget-group-window.ads b/src/fltk_binding/fltk-widget-group-window.ads
new file mode 100644
index 0000000..6d4a32d
--- /dev/null
+++ b/src/fltk_binding/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;
+