summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-clocks-updated-round.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-clocks-updated-round.ads')
-rw-r--r--src/fltk-widgets-clocks-updated-round.ads38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/fltk-widgets-clocks-updated-round.ads b/src/fltk-widgets-clocks-updated-round.ads
new file mode 100644
index 0000000..5f68382
--- /dev/null
+++ b/src/fltk-widgets-clocks-updated-round.ads
@@ -0,0 +1,38 @@
+
+
+package FLTK.Widgets.Clocks.Updated.Round is
+
+
+ type Round_Clock is new Updated_Clock with private;
+
+
+
+
+ function Create
+ (X, Y, W, H : in Integer;
+ Text : in String)
+ return Round_Clock;
+
+
+
+
+ procedure Draw
+ (This : in out Round_Clock);
+
+ 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 Finalize
+ (This : in out Round_Clock);
+
+
+end FLTK.Widgets.Clocks.Updated.Round;
+