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_box.html | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) (limited to 'doc/fl_box.html') diff --git a/doc/fl_box.html b/doc/fl_box.html index b18e479..566105a 100644 --- a/doc/fl_box.html +++ b/doc/fl_box.html @@ -23,6 +23,7 @@ Fl_Box FLTK.Widgets.Boxes + @@ -39,25 +40,46 @@   Box_Reference + - + + + + + + +
Functions and Procedures
Constructors
-Fl_Box (int X, int Y, int W, int H, const char *l=0);
+Fl_Box(Fl_Boxtype b, int X, int Y, int W, int H, const char *l);
+
+function Create
+       (Kind       : in Box_Kind;
+        X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return Box;
+
+Fl_Box(int X, int Y, int W, int H, const char *l=0);
 
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Box;
 
+ + + + + + +
Functions and Procedures
 virtual int handle(int);
@@ -70,6 +92,13 @@ function Handle
 
+ + + + + + +
Protected Functions and Procedures
 void draw();
@@ -79,6 +108,7 @@ procedure Draw
        (This : in out Box);
 
-- cgit