From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 01:14:58 +1300 Subject: Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there --- src/fltk-widgets-buttons-light.adb | 45 ++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 19 deletions(-) (limited to 'src/fltk-widgets-buttons-light.adb') diff --git a/src/fltk-widgets-buttons-light.adb b/src/fltk-widgets-buttons-light.adb index 6ab55bb..41b7bd0 100644 --- a/src/fltk-widgets-buttons-light.adb +++ b/src/fltk-widgets-buttons-light.adb @@ -12,18 +12,9 @@ with package body FLTK.Widgets.Buttons.Light is - procedure light_button_set_draw_hook - (W, D : in Storage.Integer_Address); - pragma Import (C, light_button_set_draw_hook, "light_button_set_draw_hook"); - pragma Inline (light_button_set_draw_hook); - - procedure light_button_set_handle_hook - (W, H : in Storage.Integer_Address); - pragma Import (C, light_button_set_handle_hook, "light_button_set_handle_hook"); - pragma Inline (light_button_set_handle_hook); - - - + ------------------------ + -- Functions From C -- + ------------------------ function new_fl_light_button (X, Y, W, H : in Interfaces.C.int; @@ -55,6 +46,10 @@ package body FLTK.Widgets.Buttons.Light is + ------------------- + -- Destructors -- + ------------------- + procedure Extra_Final (This : in out Light_Button) is begin @@ -75,6 +70,10 @@ package body FLTK.Widgets.Buttons.Light is + -------------------- + -- Constructors -- + -------------------- + procedure Extra_Init (This : in out Light_Button; X, Y, W, H : in Integer; @@ -84,6 +83,14 @@ package body FLTK.Widgets.Buttons.Light is end Extra_Init; + procedure Initialize + (This : in out Light_Button) is + begin + This.Draw_Ptr := fl_light_button_draw'Address; + This.Handle_Ptr := fl_light_button_handle'Address; + end Initialize; + + package body Forge is function Create @@ -99,10 +106,6 @@ package body FLTK.Widgets.Buttons.Light is Interfaces.C.int (H), Interfaces.C.To_C (Text)); Extra_Init (This, X, Y, W, H, Text); - light_button_set_draw_hook - (This.Void_Ptr, Storage.To_Integer (Draw_Hook'Address)); - light_button_set_handle_hook - (This.Void_Ptr, Storage.To_Integer (Handle_Hook'Address)); end return; end Create; @@ -111,10 +114,14 @@ package body FLTK.Widgets.Buttons.Light is + ----------------------- + -- API Subprograms -- + ----------------------- + procedure Draw (This : in out Light_Button) is begin - fl_light_button_draw (This.Void_Ptr); + Button (This).Draw; end Draw; @@ -123,10 +130,10 @@ package body FLTK.Widgets.Buttons.Light is Event : in Event_Kind) return Event_Outcome is begin - return Event_Outcome'Val - (fl_light_button_handle (This.Void_Ptr, Event_Kind'Pos (Event))); + return Button (This).Handle (Event); end Handle; end FLTK.Widgets.Buttons.Light; + -- cgit