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-buttons-light-check.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-buttons-light-check.ads')
-rw-r--r-- | src/fltk-widgets-buttons-light-check.ads | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/src/fltk-widgets-buttons-light-check.ads b/src/fltk-widgets-buttons-light-check.ads index a4f6767..b54d0af 100644 --- a/src/fltk-widgets-buttons-light-check.ads +++ b/src/fltk-widgets-buttons-light-check.ads @@ -25,22 +25,14 @@ package FLTK.Widgets.Buttons.Light.Check is end Forge; - - - procedure Draw - (This : in out Check_Button); - - function Handle - (This : in out Check_Button; - Event : in Event_Kind) - return Event_Outcome; - - private type Check_Button is new Light_Button with null record; + overriding procedure Initialize + (This : in out Check_Button); + overriding procedure Finalize (This : in out Check_Button); @@ -55,9 +47,6 @@ private with Inline; - pragma Inline (Draw); - pragma Inline (Handle); - - end FLTK.Widgets.Buttons.Light.Check; + |