summaryrefslogtreecommitdiff
path: root/doc/fl_gl_window.html
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
commite93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch)
tree3661530027db6809a9cbad7b2477416009e00787 /doc/fl_gl_window.html
parent53aa8144851913994b963ed611cca8885b8f9a9e (diff)
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'doc/fl_gl_window.html')
-rw-r--r--doc/fl_gl_window.html84
1 files changed, 55 insertions, 29 deletions
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>