diff options
Diffstat (limited to 'src/fltk-widgets-groups-input_choices.adb')
-rw-r--r-- | src/fltk-widgets-groups-input_choices.adb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-input_choices.adb b/src/fltk-widgets-groups-input_choices.adb index 3c4f1c8..4ee6ffd 100644 --- a/src/fltk-widgets-groups-input_choices.adb +++ b/src/fltk-widgets-groups-input_choices.adb @@ -283,6 +283,18 @@ package body FLTK.Widgets.Groups.Input_Choices is end return; end Create; + + function Create + (Parent : in out Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Input_Choice is + begin + return This : Input_Choice := Create (X, Y, W, H, Text) do + Parent.Add (This); + end return; + end Create; + end Forge; |