summaryrefslogtreecommitdiff
path: root/doc
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
parentf8b638b57cc1318ef3536efae662b54b3d14a3bb (diff)
Closed a few gaps in the APIs of Window derivatives
Diffstat (limited to 'doc')
-rw-r--r--doc/fl_cairo_window.html4
-rw-r--r--doc/fl_double_window.html5
-rw-r--r--doc/fl_gl_window.html7
-rw-r--r--doc/fl_menu_window.html16
4 files changed, 21 insertions, 11 deletions
diff --git a/doc/fl_cairo_window.html b/doc/fl_cairo_window.html
index d6243aa..1454c61 100644
--- a/doc/fl_cairo_window.html
+++ b/doc/fl_cairo_window.html
@@ -65,7 +65,7 @@ function Create
</tr>
<tr>
-<td>&nbsp;</td>
+<td>Create a Fl_Cairo_Window and set the label manually.</td>
<td><pre>
function Create
(W, H : in Integer;
@@ -75,7 +75,7 @@ function Create
</tr>
<tr>
-<td>&nbsp;</td>
+<td>Create a Fl_Cairo_Window and set the label and X,Y coords manually.</td>
<td><pre>
function Create
(X, Y, W, H : in Integer;
diff --git a/doc/fl_double_window.html b/doc/fl_double_window.html
index cdaf7a4..0f6d54b 100644
--- a/doc/fl_double_window.html
+++ b/doc/fl_double_window.html
@@ -155,7 +155,10 @@ procedure Show_With_Args
<td><pre>
void flush(int eraseoverlay);
</pre></td>
-<td>&nbsp;</td>
+<td><pre>
+procedure Flush_All
+ (This : in out Double_Window);
+</pre></td>
</tr>
</table>
diff --git a/doc/fl_gl_window.html b/doc/fl_gl_window.html
index 5dfc0fe..7f169a0 100644
--- a/doc/fl_gl_window.html
+++ b/doc/fl_gl_window.html
@@ -233,9 +233,10 @@ procedure Hide_Overlay
<td><pre>
void invalidate();
</pre></td>
-<td>
-Use valid / Set_Valid instead.
-</td>
+<td><pre>
+procedure Invalidate
+ (This : in out GL_Window);
+</pre></td>
</tr>
<tr>
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>