summaryrefslogtreecommitdiff
path: root/doc/fl_window.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_window.html')
-rw-r--r--doc/fl_window.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/fl_window.html b/doc/fl_window.html
index 93ab5fd..8376cf0 100644
--- a/doc/fl_window.html
+++ b/doc/fl_window.html
@@ -99,6 +99,18 @@ function Create
</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 Groups.Group'Class;
+ W, H : in Integer;
+ Text : in String := "")
+ return Window;
+</pre></td>
+ </tr>
+
+ <tr>
<td><pre>
Fl_Window(int x, int y, int w, int h, const char *title=0);
</pre></td>
@@ -110,6 +122,18 @@ function Create
</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 Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Window;
+</pre></td>
+ </tr>
+
</table>