From 617353265e4dc4e0280b565f2cd9e7749ce52bfd Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 17 Apr 2018 16:00:26 +1000 Subject: More polishing --- doc/fl_clock_output.html | 184 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 doc/fl_clock_output.html (limited to 'doc/fl_clock_output.html') diff --git a/doc/fl_clock_output.html b/doc/fl_clock_output.html new file mode 100644 index 0000000..92aaf37 --- /dev/null +++ b/doc/fl_clock_output.html @@ -0,0 +1,184 @@ + + + + + + + Fl_Clock_Output Binding Map + + + + + + +

Fl_Clock_Output Binding Map

+ + + + + + + + + +
Package name
Fl_Clock_OutputFLTK.Widgets.Clocks
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Types
Fl_Clock_OutputClock
 Clock_Reference
 Hour
 Minute
 Second
 Time_Value
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Clock_Output(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Clock;
+
+void draw();
+
+procedure Draw
+       (This : in out Clock);
+
+void draw(int X, int Y, int W, int H);
+
+procedure Draw
+       (This       : in out Clock;
+        X, Y, W, H : in     Integer);
+
 
+function Handle
+       (This  : in out Clock;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+int hour() const;
+
+function Get_Hour
+       (This : in Clock)
+    return Hour;
+
+int minute() const;
+
+function Get_Minute
+       (This : in Clock)
+    return Minute;
+
+int second() const;
+
+function Get_Second
+       (This : in Clock)
+    return Second;
+
+void value(ulong v);
+
+procedure Set_Time
+       (This : in out Clock;
+        To   : in     Time_Value);
+
+void value(int H, int m, int s);
+
+procedure Set_Time
+       (This    : in out Clock;
+        Hours   : in     Hour;
+        Minutes : in     Minute;
+        Seconds : in     Second);
+
+ulong value() const;
+
+function Get_Time
+       (This : in Clock)
+    return Time_Value;
+
+ + + + + -- cgit