aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_dial.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_dial.html')
-rw-r--r--doc/fl_dial.html88
1 files changed, 70 insertions, 18 deletions
diff --git a/doc/fl_dial.html b/doc/fl_dial.html
index 9c54e4b..0b3fc45 100644
--- a/doc/fl_dial.html
+++ b/doc/fl_dial.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Dial Binding Map</h2>
+<a href="index.html">Back to Index</a>
+
+
<table class="package">
<tr><th colspan="2">Package name</th></tr>
@@ -40,7 +42,7 @@
</tr>
<tr>
- <td>&nbsp;</td>
+ <td>uchar</td>
<td>Dial_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,12 +60,31 @@ Fl_Dial(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 Dial;
</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 Dial;
+</pre></td>
+ </tr>
+
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
+ <tr>
<td><pre>
short angle1() const;
</pre></td>
@@ -120,16 +141,6 @@ procedure Set_Angles
<tr>
<td><pre>
-void draw();
-</pre></td>
-<td><pre>
-procedure Draw
- (This : in out Dial);
-</pre></td>
- </tr>
-
- <tr>
-<td><pre>
int handle(int);
</pre></td>
<td><pre>
@@ -141,18 +152,18 @@ function Handle
</tr>
<tr>
-<td>See type() methods for Fl_Widget</td>
+<td>See type method for Fl_Widget.</td>
<td><pre>
-function Get_Dial_Type
+function Get_Kind
(This : in Dial)
return Dial_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_Dial_Type
+procedure Set_Kind
(This : in out Dial;
To : in Dial_Kind);
</pre></td>
@@ -161,6 +172,47 @@ procedure Set_Dial_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 Dial);
+</pre></td>
+ </tr>
+
+ <tr>
+<td><pre>
+void draw(int X, int Y, int W, int H);
+</pre></td>
+<td><pre>
+procedure Draw
+ (This : in out Dial;
+ X, Y, W, H : in Integer);
+</pre></td>
+ </tr>
+
+ <tr>
+<td><pre>
+int handle(int event, int X, int Y, int W, int H);
+</pre></td>
+<td><pre>
+function Handle
+ (This : in out Dial;
+ Event : in Event_Kind;
+ X, Y, W, H : in Integer)
+ return Event_Outcome;
+</pre></td>
+ </tr>
+
+</table>
+
+
</body>
</html>