From 157f44ff7034212a29696c5bb2b87e4f6f20d625 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 23:44:10 +1300 Subject: Added convenience widget constructors that specify the parent group to add to --- src/fltk-widgets-groups-windows-opengl.adb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/fltk-widgets-groups-windows-opengl.adb') diff --git a/src/fltk-widgets-groups-windows-opengl.adb b/src/fltk-widgets-groups-windows-opengl.adb index e949f2d..da2434c 100644 --- a/src/fltk-widgets-groups-windows-opengl.adb +++ b/src/fltk-widgets-groups-windows-opengl.adb @@ -284,6 +284,18 @@ package body FLTK.Widgets.Groups.Windows.OpenGL is end Create; + function Create + (Parent : in out Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return GL_Window is + begin + return This : GL_Window := Create (X, Y, W, H, Text) do + Parent.Add (This); + end return; + end Create; + + function Create (W, H : in Integer; Text : in String := "") @@ -298,6 +310,18 @@ package body FLTK.Widgets.Groups.Windows.OpenGL is end return; end Create; + + function Create + (Parent : in out Group'Class; + W, H : in Integer; + Text : in String := "") + return GL_Window is + begin + return This : GL_Window := Create (W, H, Text) do + Parent.Add (This); + end return; + end Create; + end Forge; -- cgit