summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-windows-double.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-16 23:44:10 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-16 23:44:10 +1300
commit157f44ff7034212a29696c5bb2b87e4f6f20d625 (patch)
tree2aa791870d00858880e036caf6791d65c348ec4a /src/fltk-widgets-groups-windows-double.adb
parent8b9a09364553d2495b133f948c1ddf428d0b9dae (diff)
Added convenience widget constructors that specify the parent group to add toHEADmaster
Diffstat (limited to 'src/fltk-widgets-groups-windows-double.adb')
-rw-r--r--src/fltk-widgets-groups-windows-double.adb24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-windows-double.adb b/src/fltk-widgets-groups-windows-double.adb
index bb7e3da..90a17f3 100644
--- a/src/fltk-widgets-groups-windows-double.adb
+++ b/src/fltk-widgets-groups-windows-double.adb
@@ -159,6 +159,18 @@ package body FLTK.Widgets.Groups.Windows.Double is
function Create
+ (Parent : in out Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Double_Window is
+ begin
+ return This : Double_Window := Create (X, Y, W, H, Text) do
+ Parent.Add (This);
+ end return;
+ end Create;
+
+
+ function Create
(W, H : in Integer;
Text : in String := "")
return Double_Window is
@@ -172,6 +184,18 @@ package body FLTK.Widgets.Groups.Windows.Double is
end return;
end Create;
+
+ function Create
+ (Parent : in out Group'Class;
+ W, H : in Integer;
+ Text : in String := "")
+ return Double_Window is
+ begin
+ return This : Double_Window := Create (W, H, Text) do
+ Parent.Add (This);
+ end return;
+ end Create;
+
end Forge;