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 /doc/fl_counter.html | |
parent | 53aa8144851913994b963ed611cca8885b8f9a9e (diff) |
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'doc/fl_counter.html')
-rw-r--r-- | doc/fl_counter.html | 68 |
1 files changed, 43 insertions, 25 deletions
diff --git a/doc/fl_counter.html b/doc/fl_counter.html index bf5bfc3..43e7d92 100644 --- a/doc/fl_counter.html +++ b/doc/fl_counter.html @@ -46,7 +46,7 @@ <table class="function"> - <tr><th colspan="2">Functions and Procedures</th></tr> + <tr><th colspan="2">Constructors</th></tr> <tr> <td><pre> @@ -55,20 +55,17 @@ Fl_Counter(int X, int Y, int W, int H, const char *L=0); <td><pre> function Create (X, Y, W, H : in Integer; - Text : in String) + Text : in String := "") return Counter; </pre></td> </tr> - <tr> -<td><pre> -void draw(); -</pre></td> -<td><pre> -procedure Draw - (This : in out Counter); -</pre></td> - </tr> +</table> + + + +<table class="function"> + <tr><th colspan="2">Functions and Procedures</th></tr> <tr> <td><pre> @@ -83,6 +80,15 @@ function Handle </tr> <tr> +<td>Keep manual track of whatever you set lstep to.</td> +<td><pre> +function Get_Long_Step + (This : in Counter) + return Long_Float; +</pre></td> + </tr> + + <tr> <td><pre> void lstep(double a); </pre></td> @@ -94,19 +100,14 @@ procedure Set_Long_Step </tr> <tr> -<td> </td> <td><pre> -function Get_Long_Step - (This : in Counter) - return Long_Float; +double step() const; </pre></td> - </tr> - - <tr> <td><pre> -void step(double a, double b); +function Get_Step + (This : in Counter) + return Long_Float; </pre></td> -<td> </td> </tr> <tr> @@ -114,7 +115,7 @@ void step(double a, double b); void step(double a); </pre></td> <td><pre> -procedure Set_Step +procedure Set_Step_Top (This : in out Counter; To : in Long_Float); </pre></td> @@ -122,12 +123,12 @@ procedure Set_Step <tr> <td><pre> -double step() const; +void step(double a, double b); </pre></td> <td><pre> -function Get_Step - (This : in Counter) - return Long_Float; +procedure Set_Step_Both + (This : in out Counter; + Short, Long : in Long_Float); </pre></td> </tr> @@ -200,6 +201,23 @@ procedure Set_Text_Size </table> + +<table class="function"> + <tr><th colspan="2">Protected Functions and Procedures</th></tr> + + <tr> +<td><pre> +void draw(); +</pre></td> +<td><pre> +procedure Draw + (This : in out Counter); +</pre></td> + </tr> + +</table> + + </body> </html> |