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-inputs-text-outputs.ads | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/fltk-widgets-inputs-text-outputs.ads') diff --git a/src/fltk-widgets-inputs-text-outputs.ads b/src/fltk-widgets-inputs-text-outputs.ads index 7e003e6..851451e 100644 --- a/src/fltk-widgets-inputs-text-outputs.ads +++ b/src/fltk-widgets-inputs-text-outputs.ads @@ -4,6 +4,11 @@ -- Released into the public domain +limited with + + FLTK.Widgets.Groups; + + package FLTK.Widgets.Inputs.Text.Outputs is @@ -22,6 +27,12 @@ package FLTK.Widgets.Inputs.Text.Outputs is Text : in String := "") return Output; + function Create + (Parent : in out FLTK.Widgets.Groups.Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Output; + end Forge; -- cgit