diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
commit | e93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch) | |
tree | 3661530027db6809a9cbad7b2477416009e00787 /src/fltk-widgets-clocks-updated.ads | |
parent | 53aa8144851913994b963ed611cca8885b8f9a9e (diff) |
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'src/fltk-widgets-clocks-updated.ads')
-rw-r--r-- | src/fltk-widgets-clocks-updated.ads | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/fltk-widgets-clocks-updated.ads b/src/fltk-widgets-clocks-updated.ads index c094c55..e25ae18 100644 --- a/src/fltk-widgets-clocks-updated.ads +++ b/src/fltk-widgets-clocks-updated.ads @@ -33,13 +33,6 @@ package FLTK.Widgets.Clocks.Updated is - procedure Draw - (This : in out Updated_Clock); - - procedure Draw - (This : in out Clock; - X, Y, W, H : in Integer); - function Handle (This : in out Updated_Clock; Event : in Event_Kind) @@ -51,6 +44,9 @@ private type Updated_Clock is new Clock with null record; + overriding procedure Initialize + (This : in out Updated_Clock); + overriding procedure Finalize (This : in out Updated_Clock); @@ -65,9 +61,9 @@ private with Inline; - pragma Inline (Draw); pragma Inline (Handle); end FLTK.Widgets.Clocks.Updated; + |