From e324057cbd9b02704172bb5db4163f4a0c276288 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 15:11:40 +1300 Subject: Closed a few gaps in the APIs of Window derivatives --- doc/fl_cairo_window.html | 4 ++-- doc/fl_double_window.html | 5 ++++- doc/fl_gl_window.html | 7 ++++--- doc/fl_menu_window.html | 16 +++++++++++----- 4 files changed, 21 insertions(+), 11 deletions(-) (limited to 'doc') 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 -  +Create a Fl_Cairo_Window and set the label manually.
 function Create
        (W, H : in Integer;
@@ -75,7 +75,7 @@ function Create
   
 
   
- 
+Create a Fl_Cairo_Window and set the label and X,Y coords manually.
 
 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
 
 void flush(int eraseoverlay);
 
-  +
+procedure Flush_All
+       (This : in out Double_Window);
+
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
 void invalidate();
 
- -Use valid / Set_Valid instead. - +
+procedure Invalidate
+       (This : in out GL_Window);
+
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);
 function Create
        (W, H : in Integer;
-        Text : in String)
+        Text : in String := "")
     return Menu_Window;
 
@@ -67,7 +67,7 @@ Fl_Menu_Window(int X, int Y, int W, int H, const char *L=0);
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Menu_Window;
 
@@ -83,14 +83,20 @@ function Create
 void clear_overlay();
 
-See set_overlay(); +
+procedure Clear_Overlay
+       (This : in out Menu_Window);
+
 void erase();
 
-  +
+procedure Erase
+       (This : in out Menu_Window);
+
@@ -131,7 +137,7 @@ void set_overlay();
 procedure Set_Overlay
        (This  : in out Menu_Window;
-        Value : in     Boolean);
+        Value : in     Boolean := True);
 
-- cgit