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-round-radio.ads | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) (limited to 'src/fltk-widgets-buttons-light-round-radio.ads') diff --git a/src/fltk-widgets-buttons-light-round-radio.ads b/src/fltk-widgets-buttons-light-round-radio.ads index e16964e..f46f179 100644 --- a/src/fltk-widgets-buttons-light-round-radio.ads +++ b/src/fltk-widgets-buttons-light-round-radio.ads @@ -25,22 +25,14 @@ package FLTK.Widgets.Buttons.Light.Round.Radio is end Forge; - - - procedure Draw - (This : in out Radio_Round_Button); - - function Handle - (This : in out Radio_Round_Button; - Event : in Event_Kind) - return Event_Outcome; - - private type Radio_Round_Button is new Round_Button with null record; + overriding procedure Initialize + (This : in out Radio_Round_Button); + overriding procedure Finalize (This : in out Radio_Round_Button); @@ -55,9 +47,6 @@ private with Inline; - pragma Inline (Draw); - pragma Inline (Handle); - - end FLTK.Widgets.Buttons.Light.Round.Radio; + -- cgit