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_overlay_window.html | 53 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 37 insertions(+), 16 deletions(-) (limited to 'doc/fl_overlay_window.html') 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 @@ - + +
Functions and Procedures
Constructors
@@ -72,6 +72,13 @@ function Create
 
+ + + + + + - - - - - - + + + + + + +
Functions and Procedures
 int can_do_overlay();
@@ -85,16 +92,6 @@ function Can_Do_Overlay
 
   
-virtual void draw_overlay()=0;
-
-procedure Draw_Overlay
-       (This : in out Overlay_Window) is null;
-
 void flush();
 
@@ -127,16 +124,16 @@ procedure Redraw_Overlay
 
 void resize(int, int, int, int);
 
-Use Resize/Reposition from FLTK.Widgets instead -
+procedure Resize
+       (This       : in out Overlay_Window;
+        X, Y, W, H : in     Integer);
+
 void show();
-
-void show(int a, char **b);
 
 procedure Show
@@ -144,6 +141,30 @@ procedure Show
 
+void show(int a, char **b);
+
 
+ + + + + + + + + + +
Protected Functions and Procedures
+virtual void draw_overlay()=0;
+
+procedure Draw_Overlay
+       (This : in out Overlay_Window);
+
(Will raise Program_Error if not overridden.)
-- cgit