summaryrefslogtreecommitdiff
path: root/doc/fl_slider.html
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-16 23:44:10 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-16 23:44:10 +1300
commit157f44ff7034212a29696c5bb2b87e4f6f20d625 (patch)
tree2aa791870d00858880e036caf6791d65c348ec4a /doc/fl_slider.html
parent8b9a09364553d2495b133f948c1ddf428d0b9dae (diff)
Added convenience widget constructors that specify the parent group to add toHEADmaster
Diffstat (limited to 'doc/fl_slider.html')
-rw-r--r--doc/fl_slider.html27
1 files changed, 26 insertions, 1 deletions
diff --git a/doc/fl_slider.html b/doc/fl_slider.html
index 3b99b86..099008d 100644
--- a/doc/fl_slider.html
+++ b/doc/fl_slider.html
@@ -38,7 +38,7 @@
<tr>
<td>&nbsp;</td>
- <td>Slider</td>
+ <td>Slider_Reference</td>
</tr>
<tr>
@@ -66,6 +66,18 @@ function Create
</tr>
<tr>
+<td>Rely on the automatic use of begin when a group is created, or use begin/end
+explicitly, or add each widget to its intended parent group manually.</td>
+<td><pre>
+function Create
+ (Parent : in out FLTK.Widgets.Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Slider;
+</pre></td>
+ </tr>
+
+ <tr>
<td><pre>
Fl_Slider(uchar t, int X, int Y, int W, int H, const char *L);
</pre></td>
@@ -78,6 +90,19 @@ function Create
</pre></td>
</tr>
+ <tr>
+<td>Rely on the automatic use of begin when a group is created, or use begin/end
+explicitly, or add each widget to its intended parent group manually.</td>
+<td><pre>
+function Create
+ (Parent : in out FLTK.Widgets.Groups.Group'Class;
+ Kind : in Slider_Kind;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Slider;
+</pre></td>
+ </tr>
+
</table>