From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001
From: Jedidiah Barber <contact@jedbarber.id.au>
Date: Sun, 12 Jan 2025 01:14:58 +1300
Subject: Refactored draw/handle methods in Widgets hierarchy, improved docs,
 added a few minor method bindings here and there

---
 doc/fl_gl_window.html | 84 +++++++++++++++++++++++++++++++++------------------
 1 file changed, 55 insertions(+), 29 deletions(-)

(limited to 'doc/fl_gl_window.html')

diff --git a/doc/fl_gl_window.html b/doc/fl_gl_window.html
index 50364dc..b213406 100644
--- a/doc/fl_gl_window.html
+++ b/doc/fl_gl_window.html
@@ -42,7 +42,7 @@
   </tr>
 
   <tr>
-    <td>&nbsp;</td>
+    <td>int</td>
     <td>Mode_Mask</td>
   </tr>
 
@@ -51,25 +51,29 @@
 
 
 <table class="function">
-  <tr><th colspan="2">Static Functions and Procedures</th></tr>
+  <tr><th colspan="2">Constructors</th></tr>
 
   <tr>
 <td><pre>
-static int can_do(const int *m);
+Fl_Gl_Window(int W, int H, const char *l=0);
+</pre></td>
+<td><pre>
+function Create
+       (W, H : in Integer;
+        Text : in String := "")
+    return GL_Window;
 </pre></td>
-<td>
-Not applicable due to not being part of the public stable API
-</td>
   </tr>
 
   <tr>
 <td><pre>
-static int can_do(int m);
+Fl_Gl_Window(int X, int Y, int W, int H, const char *l=0);
 </pre></td>
 <td><pre>
-function Can_Do
-       (Mask : in Mode_Mask)
-    return Boolean;
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return GL_Window;
 </pre></td>
   </tr>
 
@@ -78,38 +82,41 @@ function Can_Do
 
 
 <table class="function">
-  <tr><th colspan="2">Functions and Procedures</th></tr>
+  <tr><th colspan="2">Static Functions and Procedures</th></tr>
 
   <tr>
 <td><pre>
-Fl_Gl_Window(int W, int H, const char *l=0);
-</pre></td>
-<td><pre>
-function Create
-       (W, H : in Integer;
-        Text : in String := "")
-    return GL_Window;
+static int can_do(const int *m);
 </pre></td>
+<td>
+Not applicable due to not being part of the public stable API.
+</td>
   </tr>
 
   <tr>
 <td><pre>
-Fl_Gl_Window(int X, int Y, int W, int H, const char *l=0);
+static int can_do(int m);
 </pre></td>
 <td><pre>
-function Create
-       (X, Y, W, H : in Integer;
-        Text       : in String := "")
-    return GL_Window;
+function Can_Do
+       (Mask : in Mode_Mask)
+    return Boolean;
 </pre></td>
   </tr>
 
+</table>
+
+
+
+<table class="function">
+  <tr><th colspan="2">Functions and Procedures</th></tr>
+
   <tr>
 <td><pre>
 virtual Fl_Gl_Window * as_gl_window();
 </pre></td>
 <td>
-Use view conversion and tag membership tests instead
+Use view conversion and tag membership tests instead.
 </td>
   </tr>
 
@@ -227,7 +234,7 @@ procedure Hide_Overlay
 void invalidate();
 </pre></td>
 <td>
-Use Set_Valid instead
+Use valid / Set_Valid instead.
 </td>
   </tr>
 
@@ -267,7 +274,7 @@ function Get_Mode
 int mode(const int *a);
 </pre></td>
 <td>
-Not applicable due to not being part of the public stable API
+Not applicable due to not being part of the public stable API.
 </td>
   </tr>
 
@@ -339,9 +346,11 @@ procedure Redraw_Overlay
 <td><pre>
 void resize(int, int, int, int);
 </pre></td>
-<td>
-Use Resize/Reposition from FLTK.Widgets instead
-</td>
+<td><pre>
+procedure Resize
+       (This       : in out GL_Window;
+        X, Y, W, H : in     Integer);
+</pre></td>
   </tr>
 
   <tr>
@@ -391,6 +400,23 @@ procedure Set_Valid
 </table>
 
 
+
+<table class="function">
+  <tr><th colspan="2">Protected Functions and Procedures</th></tr>
+
+  <tr>
+<td><pre>
+virtual void draw();
+</pre></td>
+<td><pre>
+procedure Draw
+       (This : in out GL_Window);
+</pre></td>
+  </tr>
+
+</table>
+
+
   </body>
 </html>
 
-- 
cgit