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-boxes.ads | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/fltk-widgets-boxes.ads') diff --git a/src/fltk-widgets-boxes.ads b/src/fltk-widgets-boxes.ads index b0a03dc..7e24d5f 100644 --- a/src/fltk-widgets-boxes.ads +++ b/src/fltk-widgets-boxes.ads @@ -4,6 +4,11 @@ -- Released into the public domain +limited with + + FLTK.Widgets.Groups; + + package FLTK.Widgets.Boxes is @@ -22,12 +27,25 @@ package FLTK.Widgets.Boxes is Text : in String := "") return Box; + function Create + (Parent : in out FLTK.Widgets.Groups.Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Box; + function Create (Kind : in Box_Kind; X, Y, W, H : in Integer; Text : in String := "") return Box; + function Create + (Parent : in out FLTK.Widgets.Groups.Group'Class; + Kind : in Box_Kind; + X, Y, W, H : in Integer; + Text : in String := "") + return Box; + end Forge; -- cgit