aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_box.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_box.html')
-rw-r--r--doc/fl_box.html65
1 files changed, 61 insertions, 4 deletions
diff --git a/doc/fl_box.html b/doc/fl_box.html
index 3f5c5f8..9c03de3 100644
--- a/doc/fl_box.html
+++ b/doc/fl_box.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Box Binding Map</h2>
+<a href="index.html">Back to Index</a>
+
+
<table class="package">
<tr><th colspan="2">Package name</th></tr>
@@ -21,6 +23,7 @@
<td>Fl_Box</td>
<td>FLTK.Widgets.Boxes</td>
</tr>
+
</table>
@@ -37,26 +40,72 @@
<td>&nbsp;</td>
<td>Box_Reference</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>
+Fl_Box(Fl_Boxtype b, int X, int Y, int W, int H, const char *l);
+</pre></td>
+<td><pre>
+function Create
+ (Kind : in Box_Kind;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Box;
+</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 Box_Kind;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Box;
+</pre></td>
+ </tr>
<tr>
<td><pre>
-Fl_Box (int X, int Y, int W, int H, const char *l=0);
+Fl_Box(int X, int Y, int W, int H, const char *l=0);
</pre></td>
<td><pre>
function Create
(X, Y, W, H : in Integer;
- Text : in String)
+ Text : in String := "")
return Box;
</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 Box;
+</pre></td>
+ </tr>
+
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
+ <tr>
<td><pre>
virtual int handle(int);
</pre></td>
@@ -68,6 +117,13 @@ function Handle
</pre></td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Protected Functions and Procedures</th></tr>
+
<tr>
<td><pre>
void draw();
@@ -77,6 +133,7 @@ procedure Draw
(This : in out Box);
</pre></td>
</tr>
+
</table>