summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-positioners.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-positioners.adb')
-rw-r--r--src/fltk-widgets-positioners.adb13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fltk-widgets-positioners.adb b/src/fltk-widgets-positioners.adb
index 0e3dfb2..053d731 100644
--- a/src/fltk-widgets-positioners.adb
+++ b/src/fltk-widgets-positioners.adb
@@ -7,6 +7,7 @@
with
Ada.Assertions,
+ FLTK.Widgets.Groups,
Interfaces.C;
@@ -242,6 +243,18 @@ package body FLTK.Widgets.Positioners is
end return;
end Create;
+
+ function Create
+ (Parent : in out FLTK.Widgets.Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Positioner is
+ begin
+ return This : Positioner := Create (X, Y, W, H, Text) do
+ Parent.Add (This);
+ end return;
+ end Create;
+
end Forge;