From 329ff5ddb41389330b7c3843f550358bf299c98f Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 3 Mar 2018 16:27:37 +1100 Subject: Added FLTK.Widgets.Valuators.Counters --- src/fltk-widgets-valuators-counters.ads | 88 +++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 src/fltk-widgets-valuators-counters.ads (limited to 'src/fltk-widgets-valuators-counters.ads') diff --git a/src/fltk-widgets-valuators-counters.ads b/src/fltk-widgets-valuators-counters.ads new file mode 100644 index 0000000..b69d380 --- /dev/null +++ b/src/fltk-widgets-valuators-counters.ads @@ -0,0 +1,88 @@ + + +package FLTK.Widgets.Valuators.Counters is + + + type Counter is new Valuator with private; + + + + + function Create + (X, Y, W, H : in Integer; + Text : in String) + return Counter; + + + + + function Get_Step + (This : in Counter) + return Long_Float; + + procedure Set_Step + (This : in out Counter; + To : in Long_Float); + + function Get_Long_Step + (This : in Counter) + return Long_Float; + + procedure Set_Long_Step + (This : in out Counter; + To : in Long_Float); + + + + + function Get_Text_Color + (This : in Counter) + return Color; + + procedure Set_Text_Color + (This : in out Counter; + To : in Color); + + function Get_Text_Font + (This : in Counter) + return Font_Kind; + + procedure Set_Text_Font + (This : in out Counter; + To : in Font_Kind); + + function Get_Text_Size + (This : in Counter) + return Font_Size; + + procedure Set_Text_Size + (This : in out Counter; + To : in Font_Size); + + + + + procedure Draw + (This : in out Counter); + + function Handle + (This : in out Counter; + Event : in Event_Kind) + return Event_Outcome; + + +private + + + type Counter is new Valuator with record + -- Needed because Fl_Counter doesn't have + -- a way to retrieve this value otherwise. + Long_Step : Long_Float; + end record; + + overriding procedure Finalize + (This : in out Counter); + + +end FLTK.Widgets.Valuators.Counters; + -- cgit