summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-buttons-light.adb')
-rw-r--r--src/fltk-widgets-buttons-light.adb13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light.adb b/src/fltk-widgets-buttons-light.adb
index 41b7bd0..3e4791a 100644
--- a/src/fltk-widgets-buttons-light.adb
+++ b/src/fltk-widgets-buttons-light.adb
@@ -6,6 +6,7 @@
with
+ FLTK.Widgets.Groups,
Interfaces.C;
@@ -109,6 +110,18 @@ package body FLTK.Widgets.Buttons.Light 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 Light_Button is
+ begin
+ return This : Light_Button := Create (X, Y, W, H, Text) do
+ Parent.Add (This);
+ end return;
+ end Create;
+
end Forge;