aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_counter.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_counter.html')
-rw-r--r--doc/fl_counter.html99
1 files changed, 77 insertions, 22 deletions
diff --git a/doc/fl_counter.html b/doc/fl_counter.html
index fce7fa4..fbd6eb3 100644
--- a/doc/fl_counter.html
+++ b/doc/fl_counter.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Counter Binding Map</h2>
+<a href="index.html">Back to Index</a>
+
+
<table class="package">
<tr><th colspan="2">Package name</th></tr>
@@ -39,12 +41,17 @@
<td>Counter_Reference</td>
</tr>
+ <tr>
+ <td>uchar</td>
+ <td>Counter_Kind</td>
+ </tr>
+
</table>
<table class="function">
- <tr><th colspan="2">Functions and Procedures</th></tr>
+ <tr><th colspan="2">Constructors</th></tr>
<tr>
<td><pre>
@@ -53,21 +60,30 @@ 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>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();
-</pre></td>
-<td><pre>
-procedure Draw
- (This : in out Counter);
+function Create
+ (Parent : in out FLTK.Widgets.Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Counter;
</pre></td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
<tr>
<td><pre>
int handle(int);
@@ -81,6 +97,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>
@@ -92,19 +117,14 @@ procedure Set_Long_Step
</tr>
<tr>
-<td>&nbsp;</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>&nbsp;</td>
</tr>
<tr>
@@ -112,7 +132,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>
@@ -120,12 +140,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>
@@ -195,6 +215,41 @@ procedure Set_Text_Size
</pre></td>
</tr>
+ <tr>
+<td>See type method for Fl_Widget.</td>
+<td><pre>
+function Get_Kind
+ (This : in out Counter)
+ return Counter_Kind;
+</pre></td>
+ </tr>
+
+ <tr>
+<td>See type method for Fl_Widget.</td>
+<td><pre>
+procedure Set_Kind
+ (This : in out Counter;
+ Value : in Counter_Kind);
+</pre></td>
+ </tr>
+
+</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>