aboutsummaryrefslogtreecommitdiff
path: root/doc/fl_menu_window.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fl_menu_window.html')
-rw-r--r--doc/fl_menu_window.html61
1 files changed, 41 insertions, 20 deletions
diff --git a/doc/fl_menu_window.html b/doc/fl_menu_window.html
index 9237db5..920ecdd 100644
--- a/doc/fl_menu_window.html
+++ b/doc/fl_menu_window.html
@@ -1,4 +1,3 @@
-
<!DOCTYPE html>
<html lang="en">
@@ -14,6 +13,9 @@
<h2>Fl_Menu_Window 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,7 +55,19 @@ Fl_Menu_Window(int W, int H, const char *L=0);
<td><pre>
function Create
(W, H : in Integer;
- Text : in String)
+ Text : in String := "")
+ return Menu_Window;
+</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;
+ W, H : in Integer;
+ Text : in String := "")
return Menu_Window;
</pre></td>
</tr>
@@ -65,22 +79,36 @@ Fl_Menu_Window(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 Menu_Window;
</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 clear_overlay();
+function Create
+ (Parent : in out Groups.Group'Class;
+ X, Y, W, H : in Integer;
+ Text : in String := "")
+ return Menu_Window;
</pre></td>
-<td>See set_overlay();</td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
<tr>
-<td>&nbsp;</td>
<td><pre>
-procedure Draw
+void clear_overlay();
+</pre></td>
+<td><pre>
+procedure Clear_Overlay
(This : in out Menu_Window);
</pre></td>
</tr>
@@ -89,7 +117,10 @@ procedure Draw
<td><pre>
void erase();
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+procedure Erase
+ (This : in out Menu_Window);
+</pre></td>
</tr>
<tr>
@@ -103,16 +134,6 @@ procedure Flush
</tr>
<tr>
-<td>&nbsp;</td>
-<td><pre>
-function Handle
- (This : in out Menu_Window;
- Event : in Event_Kind)
- return Event_Outcome;
-</pre></td>
- </tr>
-
- <tr>
<td><pre>
void hide();
</pre></td>
@@ -140,7 +161,7 @@ void set_overlay();
<td><pre>
procedure Set_Overlay
(This : in out Menu_Window;
- Value : in Boolean);
+ Value : in Boolean := True);
</pre></td>
</tr>