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_pack.html | 61 ++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 22 deletions(-) (limited to 'doc/fl_pack.html') diff --git a/doc/fl_pack.html b/doc/fl_pack.html index 0c05789..583ee08 100644 --- a/doc/fl_pack.html +++ b/doc/fl_pack.html @@ -43,7 +43,7 @@ enum { VERTICAL = 0, HORIZONTAL = 1 } -   + Pack_Kind @@ -51,7 +51,7 @@ - + - - - - +
Functions and Procedures
Constructors
@@ -60,36 +60,27 @@ Fl_Pack(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 Packed_Group;
 
-void draw();
-
-procedure Draw
-       (This : in out Packed_Group);
-
+ - -  -
-function Handle
-       (This  : in out Packed_Group;
-        Event : in     Event_Kind)
-    return Event_Outcome;
-
- + + + - + @@ -114,6 +105,32 @@ procedure Set_Spacing + + + + + +
Functions and Procedures
 uchar horizontal() const;
 
 
+function Get_Pack_Type
+       (This : in Packed_Group)
+    return Pack_Kind;
+
See type method for Fl_Widget.
+procedure Set_Pack_Type
+       (This : in out Packed_Group;
+        Kind : in     Pack_Kind);
+
+ + + + + + + + + + +
Protected Functions and Procedures
+void draw();
+
+procedure Draw
+       (This : in out Packed_Group);
+
-- cgit