diff options
author | Jed Barber <jjbarber@y7mail.com> | 2018-04-17 16:00:26 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2018-04-17 16:00:26 +1000 |
commit | 617353265e4dc4e0280b565f2cd9e7749ce52bfd (patch) | |
tree | b03cbfad780fb426ef42660ff6e112cdcaeda9f4 /doc/fl_clock_output.html | |
parent | a4b6a06f372923fb38ae4d3c7e0429ce93ea7748 (diff) |
More polishing
Diffstat (limited to 'doc/fl_clock_output.html')
-rw-r--r-- | doc/fl_clock_output.html | 184 |
1 files changed, 184 insertions, 0 deletions
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 @@ + +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>Fl_Clock_Output Binding Map</title> + <link href="map.css" rel="stylesheet"> + </head> + + <body> + + +<h2>Fl_Clock_Output Binding Map</h2> + + +<table class="package"> + <tr><th colspan="2">Package name</th></tr> + + <tr> + <td>Fl_Clock_Output</td> + <td>FLTK.Widgets.Clocks</td> + </tr> +</table> + + + +<table class="type"> + <tr><th colspan="2">Types</th></tr> + + <tr> + <td>Fl_Clock_Output</td> + <td>Clock</td> + </tr> + + <tr> + <td> </td> + <td>Clock_Reference</td> + </tr> + + <tr> + <td> </td> + <td>Hour</td> + </tr> + + <tr> + <td> </td> + <td>Minute</td> + </tr> + + <tr> + <td> </td> + <td>Second</td> + </tr> + + <tr> + <td> </td> + <td>Time_Value</td> + </tr> + +</table> + + + +<table class="function"> + <tr><th colspan="2">Functions and Procedures</th></tr> + + <tr> +<td><pre> +Fl_Clock_Output(int X, int Y, int W, int H, const char *L=0); +</pre></td> +<td><pre> +function Create + (X, Y, W, H : in Integer; + Text : in String) + return Clock; +</pre></td> + </tr> + + <tr> +<td><pre> +void draw(); +</pre></td> +<td><pre> +procedure Draw + (This : in out Clock); +</pre></td> + </tr> + + <tr> +<td><pre> +void draw(int X, int Y, int W, int H); +</pre></td> +<td><pre> +procedure Draw + (This : in out Clock; + X, Y, W, H : in Integer); +</pre></td> + </tr> + + <tr> +<td> </td> +<td><pre> +function Handle + (This : in out Clock; + Event : in Event_Kind) + return Event_Outcome; +</pre></td> + </tr> + + <tr> +<td><pre> +int hour() const; +</pre></td> +<td><pre> +function Get_Hour + (This : in Clock) + return Hour; +</pre></td> + </tr> + + <tr> +<td><pre> +int minute() const; +</pre></td> +<td><pre> +function Get_Minute + (This : in Clock) + return Minute; +</pre></td> + </tr> + + <tr> +<td><pre> +int second() const; +</pre></td> +<td><pre> +function Get_Second + (This : in Clock) + return Second; +</pre></td> + </tr> + + <tr> +<td><pre> +void value(ulong v); +</pre></td> +<td><pre> +procedure Set_Time + (This : in out Clock; + To : in Time_Value); +</pre></td> + </tr> + + <tr> +<td><pre> +void value(int H, int m, int s); +</pre></td> +<td><pre> +procedure Set_Time + (This : in out Clock; + Hours : in Hour; + Minutes : in Minute; + Seconds : in Second); +</pre></td> + </tr> + + <tr> +<td><pre> +ulong value() const; +</pre></td> +<td><pre> +function Get_Time + (This : in Clock) + return Time_Value; +</pre></td> + </tr> + +</table> + + + </body> +</html> + |