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-valuators-counters.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-valuators-counters.ads')
-rw-r--r-- | src/fltk-widgets-valuators-counters.ads | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/fltk-widgets-valuators-counters.ads b/src/fltk-widgets-valuators-counters.ads index 7119923..0b2b31c 100644 --- a/src/fltk-widgets-valuators-counters.ads +++ b/src/fltk-widgets-valuators-counters.ads @@ -31,7 +31,7 @@ package FLTK.Widgets.Valuators.Counters is (This : in Counter) return Long_Float; - procedure Set_Step + procedure Set_Step_Top (This : in out Counter; To : in Long_Float); @@ -43,6 +43,10 @@ package FLTK.Widgets.Valuators.Counters is (This : in out Counter; To : in Long_Float); + procedure Set_Step_Both + (This : in out Counter; + Short, Long : in Long_Float); + @@ -91,6 +95,9 @@ private Long_Step : Long_Float := 1.0; end record; + overriding procedure Initialize + (This : in out Counter); + overriding procedure Finalize (This : in out Counter); @@ -123,3 +130,4 @@ private end FLTK.Widgets.Valuators.Counters; + |