diff options
Diffstat (limited to 'src/fltk-widgets-clocks.adb')
-rw-r--r-- | src/fltk-widgets-clocks.adb | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/fltk-widgets-clocks.adb b/src/fltk-widgets-clocks.adb index c96d1f2..8c9e785 100644 --- a/src/fltk-widgets-clocks.adb +++ b/src/fltk-widgets-clocks.adb @@ -118,6 +118,15 @@ package body FLTK.Widgets.Clocks is + procedure Extra_Init + (This : in out Clock; + X, Y, W, H : in Integer; + Text : in String) is + begin + Extra_Init (Widget (This), X, Y, W, H, Text); + end Extra_Init; + + package body Forge is function Create @@ -132,14 +141,11 @@ package body FLTK.Widgets.Clocks 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); clock_output_set_draw_hook (This.Void_Ptr, Storage.To_Integer (Draw_Hook'Address)); clock_output_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; |