summaryrefslogtreecommitdiff
path: root/doc/fl_spinner.html
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
commite93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch)
tree3661530027db6809a9cbad7b2477416009e00787 /doc/fl_spinner.html
parent53aa8144851913994b963ed611cca8885b8f9a9e (diff)
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'doc/fl_spinner.html')
-rw-r--r--doc/fl_spinner.html59
1 files changed, 45 insertions, 14 deletions
diff --git a/doc/fl_spinner.html b/doc/fl_spinner.html
index 180937e..179a144 100644
--- a/doc/fl_spinner.html
+++ b/doc/fl_spinner.html
@@ -46,7 +46,35 @@
<table class="function">
- <tr><th colspan="2">Functions and Procedures</th></tr>
+ <tr><th colspan="2">Protected Attributes</th></tr>
+
+ <tr>
+<td><pre>
+Fl_Repeat_Button down_button_;
+</pre></td>
+<td>&nbsp;</td>
+ </tr>
+
+ <tr>
+<td><pre>
+Fl_Input input_;
+</pre></td>
+<td>&nbsp;</td>
+ </tr>
+
+ <tr>
+<td><pre>
+Fl_Repeat_Button up_button_;
+</pre></td>
+<td>&nbsp;</td>
+ </tr>
+
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Constructors</th></tr>
<tr>
<td><pre>
@@ -55,11 +83,18 @@ Fl_Spinner(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 Spinner;
</pre></td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
<tr>
<td><pre>
void color(Fl_Color v);
@@ -83,14 +118,6 @@ function Get_Background_Color
</tr>
<tr>
-<td>&nbsp;</td>
-<td><pre>
-procedure Draw
- (This : in out Spinner);
-</pre></td>
- </tr>
-
- <tr>
<td><pre>
const char * format();
</pre></td>
@@ -142,7 +169,7 @@ procedure Set_Maximum
<td><pre>
double maxinum() const;
</pre></td>
-<td>&nbsp;</td>
+<td>Deprecated spelling mistake, use maximum / Get_Maximum instead.</td>
</tr>
<tr>
@@ -171,11 +198,11 @@ procedure Set_Minimum
<td><pre>
double mininum() const;
</pre></td>
-<td>&nbsp;</td>
+<td>Deprecated spelling mistake, use minimum / Get_Minimum instead.</td>
</tr>
<tr>
-<td>&nbsp;</td>
+<td>Use a combination of minimum and maximum to get the values.</td>
<td><pre>
procedure Get_Range
(This : in Spinner;
@@ -198,7 +225,11 @@ procedure Set_Range
<td><pre>
void resize(int X, int Y, int W, int H);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+procedure Resize
+ (This : in out Spinner;
+ X, Y, W, H : in Integer);
+</pre></td>
</tr>
<tr>