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-clocks-updated-round.ads | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'src/fltk-widgets-clocks-updated-round.ads') diff --git a/src/fltk-widgets-clocks-updated-round.ads b/src/fltk-widgets-clocks-updated-round.ads index fc52031..8576318 100644 --- a/src/fltk-widgets-clocks-updated-round.ads +++ b/src/fltk-widgets-clocks-updated-round.ads @@ -25,26 +25,14 @@ package FLTK.Widgets.Clocks.Updated.Round is end Forge; - - - procedure Draw - (This : in out Round_Clock); - - procedure Draw - (This : in out Clock; - X, Y, W, H : in Integer); - - function Handle - (This : in out Round_Clock; - Event : in Event_Kind) - return Event_Outcome; - - private type Round_Clock is new Updated_Clock with null record; + overriding procedure Initialize + (This : in out Round_Clock); + overriding procedure Finalize (This : in out Round_Clock); @@ -59,9 +47,6 @@ private with Inline; - pragma Inline (Draw); - pragma Inline (Handle); - - end FLTK.Widgets.Clocks.Updated.Round; + -- cgit