diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-09-21 23:34:15 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-09-21 23:34:15 +1000 |
commit | d4520de203a8fd8816836b7f8507027cf0675f91 (patch) | |
tree | 81f1a94b8a21fc2f9da21a524236924920a04bf7 /fltk-widgets-groups.adb | |
parent | f372ad18e2ba1fe0660cfd93e64c17162a52a5f7 (diff) |
More progress on the little utility window layouts
Diffstat (limited to 'fltk-widgets-groups.adb')
-rw-r--r-- | fltk-widgets-groups.adb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fltk-widgets-groups.adb b/fltk-widgets-groups.adb index 32753ea..3ffd1e3 100644 --- a/fltk-widgets-groups.adb +++ b/fltk-widgets-groups.adb @@ -52,6 +52,10 @@ package body FLTK.Widgets.Groups is return System.Address; pragma Import (C, fl_group_child, "fl_group_child"); + procedure fl_group_resizable + (G, W : in System.Address); + pragma Import (C, fl_group_resizable, "fl_group_resizable"); + @@ -185,5 +189,15 @@ package body FLTK.Widgets.Groups is end Remove; + + + procedure Set_Resizable + (This : in out Group; + Item : in Widget'Class) is + begin + fl_group_resizable (This.Void_Ptr, Item.Void_Ptr); + end Set_Resizable; + + end FLTK.Widgets.Groups; |