diff options
Diffstat (limited to 'src/fltk-widgets-inputs-text-outputs-multiline.adb')
-rw-r--r-- | src/fltk-widgets-inputs-text-outputs-multiline.adb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/fltk-widgets-inputs-text-outputs-multiline.adb b/src/fltk-widgets-inputs-text-outputs-multiline.adb index 021377e..4d8ade8 100644 --- a/src/fltk-widgets-inputs-text-outputs-multiline.adb +++ b/src/fltk-widgets-inputs-text-outputs-multiline.adb @@ -6,6 +6,7 @@ with + FLTK.Widgets.Groups, Interfaces.C.Strings; @@ -109,6 +110,18 @@ package body FLTK.Widgets.Inputs.Text.Outputs.Multiline is end return; end Create; + + function Create + (Parent : in out FLTK.Widgets.Groups.Group'Class; + X, Y, W, H : in Integer; + Text : in String := "") + return Multiline_Output is + begin + return This : Multiline_Output := Create (X, Y, W, H, Text) do + Parent.Add (This); + end return; + end Create; + end Forge; |