aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_slider.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_slider.html')
-rw-r--r--doc/fl_slider.html109
1 files changed, 90 insertions, 19 deletions
diff --git a/doc/fl_slider.html b/doc/fl_slider.html
index 0853595..a56daf4 100644
--- a/doc/fl_slider.html
+++ b/doc/fl_slider.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Slider Binding Map</h2>
+<a href="index.html">Back to Index</a>
+
+
<table class="package">
<tr><th colspan="2">Package name</th></tr>
@@ -36,11 +38,11 @@
<tr>
<td>&nbsp;</td>
- <td>Slider</td>
+ <td>Slider_Reference</td>
</tr>
<tr>
- <td>&nbsp;</td>
+ <td>uchar</td>
<td>Slider_Kind</td>
</tr>
@@ -49,7 +51,7 @@
<table class="function">
- <tr><th colspan="2">Functions and Procedures</th></tr>
+ <tr><th colspan="2">Constructors</th></tr>
<tr>
<td><pre>
@@ -58,36 +60,64 @@ Fl_Slider(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 Slider;
</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>
-Fl_Slider(uchar t, int X, int Y, int W, int H, const char *L);
+function Create
+ (Parent : in out FLTK.Widgets.Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Slider;
</pre></td>
-<td>&nbsp;</td>
</tr>
<tr>
<td><pre>
-void bounds(double a, double b);
+Fl_Slider(uchar t, int X, int Y, int W, int H, const char *L);
</pre></td>
<td><pre>
-procedure Set_Bounds
- (This : in out Slider;
- Min, Max : in Long_Float);
+function Create
+ (Kind : in Slider_Kind;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Slider;
</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>
-void draw();
+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>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
+ <tr>
<td><pre>
-procedure Draw
- (This : in out Slider);
+void bounds(double a, double b);
+</pre></td>
+<td><pre>
+procedure Set_Bounds
+ (This : in out Slider;
+ Min, Max : in Long_Float);
</pre></td>
</tr>
@@ -157,23 +187,23 @@ void slider_size(double v);
<td><pre>
procedure Set_Slide_Size
(This : in out Slider;
- To : in Float);
+ To : in Long_Float);
</pre></td>
</tr>
<tr>
-<td>See type() methods for Fl_Widget</td>
+<td>See type method for Fl_Widget.</td>
<td><pre>
-function Get_Slider_Type
+function Get_Kind
(This : in Slider)
return Slider_Kind;
</pre></td>
</tr>
<tr>
-<td>See type() methods for Fl_Widget</td>
+<td>See type method for Fl_Widget.</td>
<td><pre>
-procedure Set_Slider_Type
+procedure Set_Kind
(This : in out Slider;
To : in Slider_Kind);
</pre></td>
@@ -182,6 +212,47 @@ procedure Set_Slider_Type
</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 Slider);
+</pre></td>
+ </tr>
+
+ <tr>
+<td><pre>
+void draw(int, int, int, int);
+</pre></td>
+<td><pre>
+procedure Draw
+ (This : in out Slider;
+ X, Y, W, H : in Integer);
+</pre></td>
+ </tr>
+
+ <tr>
+<td><pre>
+int handle(int, int, int, int, int);
+</pre></td>
+<td><pre>
+function Handle
+ (This : in out Slider;
+ Event : in Event_Kind;
+ X, Y, W, H : in Integer)
+ return Event_Outcome;
+</pre></td>
+ </tr>
+
+</table>
+
+
</body>
</html>