summaryrefslogtreecommitdiff
path: root/doc/fl_overlay_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_overlay_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_overlay_window.html')
-rw-r--r--doc/fl_overlay_window.html53
1 files changed, 37 insertions, 16 deletions
diff --git a/doc/fl_overlay_window.html b/doc/fl_overlay_window.html
index dd36675..ac86aac 100644
--- a/doc/fl_overlay_window.html
+++ b/doc/fl_overlay_window.html
@@ -46,7 +46,7 @@
<table class="function">
- <tr><th colspan="2">Functions and Procedures</th></tr>
+ <tr><th colspan="2">Constructors</th></tr>
<tr>
<td><pre>
@@ -72,6 +72,13 @@ function Create
</pre></td>
</tr>
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Functions and Procedures</th></tr>
+
<tr>
<td><pre>
int can_do_overlay();
@@ -85,16 +92,6 @@ function Can_Do_Overlay
<tr>
<td><pre>
-virtual void draw_overlay()=0;
-</pre></td>
-<td><pre>
-procedure Draw_Overlay
- (This : in out Overlay_Window) is null;
-</pre></td>
- </tr>
-
- <tr>
-<td><pre>
void flush();
</pre></td>
<td><pre>
@@ -127,16 +124,16 @@ 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 Overlay_Window;
+ X, Y, W, H : in Integer);
+</pre></td>
</tr>
<tr>
<td><pre>
void show();
-
-void show(int a, char **b);
</pre></td>
<td><pre>
procedure Show
@@ -144,6 +141,30 @@ procedure Show
</pre></td>
</tr>
+ <tr>
+<td><pre>
+void show(int a, char **b);
+</pre></td>
+<td>&nbsp;</td>
+ </tr>
+
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Protected Functions and Procedures</th></tr>
+
+ <tr>
+<td><pre>
+virtual void draw_overlay()=0;
+</pre></td>
+<td><pre>
+procedure Draw_Overlay
+ (This : in out Overlay_Window);
+</pre>(Will raise Program_Error if not overridden.)</td>
+ </tr>
+
</table>