aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_valuator.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_valuator.html')
-rw-r--r--doc/fl_valuator.html130
1 files changed, 110 insertions, 20 deletions
diff --git a/doc/fl_valuator.html b/doc/fl_valuator.html
index 81e374b..d443dbe 100644
--- a/doc/fl_valuator.html
+++ b/doc/fl_valuator.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Valuator Binding Map</h2>
+<a href="index.html">Back to Index</a>
+
+
<table class="package">
<tr><th colspan="2">Package name</th></tr>
@@ -44,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>
@@ -53,11 +55,30 @@ Fl_Valuator(int X, int Y, int W, int H, const char *L);
<td><pre>
function Create
(X, Y, W, H : in Integer;
- Text : in String)
+ Text : in String := "")
+ return Valuator;
+</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;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
return Valuator;
</pre></td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
<tr>
<td><pre>
void bounds(double a, double b);
@@ -85,16 +106,10 @@ function Clamp
<td><pre>
virtual int format(char *);
</pre></td>
-<td>&nbsp;</td>
- </tr>
-
- <tr>
-<td>&nbsp;</td>
<td><pre>
-function Handle
- (This : in out Valuator;
- Event : in Event_Kind)
- return Event_Outcome;
+function Format
+ (This : in Valuator)
+ return String;
</pre></td>
</tr>
@@ -191,16 +206,25 @@ function Round
<tr>
<td><pre>
-void step(int a);
+double step() const;
+</pre></td>
+<td><pre>
+function Get_Step
+ (This : in Valuator)
+ return Long_Float;
</pre></td>
-<td>&nbsp;</td>
</tr>
<tr>
<td><pre>
void step(double a, int b);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+procedure Set_Step
+ (This : in out Valuator;
+ Top : in Long_Float;
+ Bottom : in Integer);
+</pre></td>
</tr>
<tr>
@@ -208,7 +232,7 @@ void step(double a, int b);
void step(double s);
</pre></td>
<td><pre>
-procedure Set_Step
+procedure Set_Step_Top
(This : in out Valuator;
To : in Long_Float);
</pre></td>
@@ -216,12 +240,12 @@ procedure Set_Step
<tr>
<td><pre>
-double step() const;
+void step(int a);
</pre></td>
<td><pre>
-function Get_Step
- (This : in Valuator)
- return Long_Float;
+procedure Set_Step_Bottom
+ (This : in out Valuator;
+ To : in Integer);
</pre></td>
</tr>
@@ -250,6 +274,72 @@ procedure Set_Value
</table>
+
+<table class="function">
+ <tr><th colspan="2">Protected Functions and Procedures</th></tr>
+
+ <tr>
+<td><pre>
+void handle_drag(double newvalue);
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+void handle_push();
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+void handle_release();
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+int horizontal() const;
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+double previous_value() const;
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+void set_value(double v);
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+double softclamp(double);
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+virtual void value_damage();
+</pre></td>
+<td><pre>
+procedure Value_Damage
+ (This : in out Valuator);
+</pre></td>
+ </tr>
+
+</table>
+
+
</body>
</html>