summaryrefslogtreecommitdiff
path: root/doc/fl_menu_window.html
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-12 15:11:40 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-12 15:11:40 +1300
commite324057cbd9b02704172bb5db4163f4a0c276288 (patch)
tree35afdc681d278049acc62ae61366b6da46122128 /doc/fl_menu_window.html
parentf8b638b57cc1318ef3536efae662b54b3d14a3bb (diff)
Closed a few gaps in the APIs of Window derivatives
Diffstat (limited to 'doc/fl_menu_window.html')
-rw-r--r--doc/fl_menu_window.html16
1 files changed, 11 insertions, 5 deletions
diff --git a/doc/fl_menu_window.html b/doc/fl_menu_window.html
index 523c1d5..a62f2f0 100644
--- a/doc/fl_menu_window.html
+++ b/doc/fl_menu_window.html
@@ -55,7 +55,7 @@ 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>
@@ -67,7 +67,7 @@ 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>
@@ -83,14 +83,20 @@ function Create
<td><pre>
void clear_overlay();
</pre></td>
-<td>See set_overlay();</td>
+<td><pre>
+procedure Clear_Overlay
+ (This : in out Menu_Window);
+</pre></td>
</tr>
<tr>
<td><pre>
void erase();
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+procedure Erase
+ (This : in out Menu_Window);
+</pre></td>
</tr>
<tr>
@@ -131,7 +137,7 @@ void set_overlay();
<td><pre>
procedure Set_Overlay
(This : in out Menu_Window;
- Value : in Boolean);
+ Value : in Boolean := True);
</pre></td>
</tr>