diff options
Diffstat (limited to 'src/fltk-widgets-buttons-light-round-radio.adb')
-rw-r--r-- | src/fltk-widgets-buttons-light-round-radio.adb | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/fltk-widgets-buttons-light-round-radio.adb b/src/fltk-widgets-buttons-light-round-radio.adb index 3f77fcb..4dbe7d9 100644 --- a/src/fltk-widgets-buttons-light-round-radio.adb +++ b/src/fltk-widgets-buttons-light-round-radio.adb @@ -70,6 +70,15 @@ package body FLTK.Widgets.Buttons.Light.Round.Radio is + procedure Extra_Init + (This : in out Radio_Round_Button; + X, Y, W, H : in Integer; + Text : in String) is + begin + Extra_Init (Round_Button (This), X, Y, W, H, Text); + end Extra_Init; + + package body Forge is function Create @@ -84,14 +93,11 @@ package body FLTK.Widgets.Buttons.Light.Round.Radio is Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); - fl_widget_set_user_data - (This.Void_Ptr, - Storage.To_Integer (Widget_Convert.To_Address (This'Unchecked_Access))); + Extra_Init (This, X, Y, W, H, Text); radio_round_button_set_draw_hook (This.Void_Ptr, Storage.To_Integer (Draw_Hook'Address)); radio_round_button_set_handle_hook (This.Void_Ptr, Storage.To_Integer (Handle_Hook'Address)); - fl_widget_set_label (This.Void_Ptr, Interfaces.C.To_C (Text)); end return; end Create; |