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_double_window.html | 63 +++++++++++++++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 21 deletions(-) (limited to 'doc/fl_double_window.html') diff --git a/doc/fl_double_window.html b/doc/fl_double_window.html index b93635b..6c61c93 100644 --- a/doc/fl_double_window.html +++ b/doc/fl_double_window.html @@ -39,14 +39,28 @@   Double_Window_Reference + + + + + + + + + + + +
Protected Attributes
+char force_doublebuffering_;
+
Intentionally left unbound.
- + @@ -67,18 +81,17 @@ Fl_Double_Window(int X, int Y, int W, int H, const char *L=0); - - - - +
Functions and Procedures
Constructors
@@ -55,7 +69,7 @@ Fl_Double_Window(int W, int H, const char *L=0);
 
 function Create
        (W, H : in Integer;
-        Text : in String)
+        Text : in String := "")
     return Double_Window;
 
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Double_Window;
 
 
-procedure Draw
-       (This : in out Double_Window);
-
+ + + + + - - - - - - + @@ -137,6 +144,20 @@ void show(int a, char **b);
Functions and Procedures
@@ -90,16 +103,6 @@ procedure Flush
 
 
-function Handle
-       (This  : in out Double_Window;
-        Event : in     Event_Kind)
-    return Event_Outcome;
-
 void hide();
@@ -114,7 +117,11 @@ procedure Hide
 
 void resize(int,int,int,int);
 
 
+procedure Resize
+       (This       : in out Double_Window;
+        X, Y, W, H : in     Integer);
+
+ + + + + + + + + +
Protected Functions and Procedures
+void flush(int eraseoverlay);
+
 
+ + -- cgit