From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001 From: Jedidiah Barber 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 @@ -   + int Mode_Mask @@ -51,25 +51,29 @@ - + + - @@ -78,38 +82,41 @@ function Can_Do
Static Functions and Procedures
Constructors
-static int can_do(const int *m);
+Fl_Gl_Window(int W, int H, const char *l=0);
+
+function Create
+       (W, H : in Integer;
+        Text : in String := "")
+    return GL_Window;
 
-Not applicable due to not being part of the public stable API -
-static int can_do(int m);
+Fl_Gl_Window(int X, int Y, int W, int H, const char *l=0);
 
-function Can_Do
-       (Mask : in Mode_Mask)
-    return Boolean;
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return GL_Window;
 
- + - + +
Functions and Procedures
Static Functions and Procedures
-Fl_Gl_Window(int W, int H, const char *l=0);
-
-function Create
-       (W, H : in Integer;
-        Text : in String := "")
-    return GL_Window;
+static int can_do(const int *m);
 
+Not applicable due to not being part of the public stable API. +
-Fl_Gl_Window(int X, int Y, int W, int H, const char *l=0);
+static int can_do(int m);
 
-function Create
-       (X, Y, W, H : in Integer;
-        Text       : in String := "")
-    return GL_Window;
+function Can_Do
+       (Mask : in Mode_Mask)
+    return Boolean;
 
+ + + + + + @@ -227,7 +234,7 @@ procedure Hide_Overlay void invalidate(); @@ -267,7 +274,7 @@ function Get_Mode int mode(const int *a); @@ -339,9 +346,11 @@ procedure Redraw_Overlay - + @@ -391,6 +400,23 @@ procedure Set_Valid
Functions and Procedures
 virtual Fl_Gl_Window * as_gl_window();
 
-Use view conversion and tag membership tests instead +Use view conversion and tag membership tests instead.
-Use Set_Valid instead +Use valid / Set_Valid instead.
-Not applicable due to not being part of the public stable API +Not applicable due to not being part of the public stable API.
 void resize(int, int, int, int);
 
-Use Resize/Reposition from FLTK.Widgets instead -
+procedure Resize
+       (This       : in out GL_Window;
+        X, Y, W, H : in     Integer);
+
+ + + + + + + + + +
Protected Functions and Procedures
+virtual void draw();
+
+procedure Draw
+       (This : in out GL_Window);
+
+ + -- cgit