summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-packed.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-groups-packed.adb')
-rw-r--r--src/fltk-widgets-groups-packed.adb12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-packed.adb b/src/fltk-widgets-groups-packed.adb
index 421bca1..e7b34a4 100644
--- a/src/fltk-widgets-groups-packed.adb
+++ b/src/fltk-widgets-groups-packed.adb
@@ -136,6 +136,18 @@ package body FLTK.Widgets.Groups.Packed is
end return;
end Create;
+
+ function Create
+ (Parent : in out Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Packed_Group is
+ begin
+ return This : Packed_Group := Create (X, Y, W, H, Text) do
+ Parent.Add (This);
+ end return;
+ end Create;
+
end Forge;