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_group.html | 110 +++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 85 insertions(+), 25 deletions(-) (limited to 'doc/fl_group.html') diff --git a/doc/fl_group.html b/doc/fl_group.html index b191856..da6f604 100644 --- a/doc/fl_group.html +++ b/doc/fl_group.html @@ -42,12 +42,12 @@ -   + int Index -   + int Extended_Index @@ -61,7 +61,7 @@ - + +
Functions and Procedures
Constructors
@@ -70,11 +70,45 @@ Fl_Group(int, int, int, int, const char *=0);
 
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Group;
 
+ + + + + + + + + + + + + + + + +
Static Functions and Procedures
+static Fl_Group * current();
+
+function Get_Current
+    return access Group'Class;
+
+static void current(Fl_Group *g);
+
+procedure Set_Current
+       (To : in Group'Class);
+
+ + + + + + - - - - - @@ -218,6 +243,7 @@ void end(); + + + + + + + + +
Functions and Procedures
 Fl_Widget *& _ddfdesign_kludge();
@@ -85,6 +119,7 @@ Fl_Widget *& _ddfdesign_kludge();
   
 void add(Fl_Widget &);
+
 void add(Fl_Widget *o);
 
@@ -200,16 +235,6 @@ unsigned int clip_children();
 
   
-void draw();
-
-procedure Draw
-       (This : in out Group);
-
 void end();
 
 
 int find(const Fl_Widget *) const;
+
 int find(const Fl_Widget &o) const;
 
@@ -311,6 +337,7 @@ procedure Remove
   
 void remove(Fl_Widget &);
+
 void remove(Fl_Widget *o);
 
@@ -322,7 +349,19 @@ procedure Remove
 
   
+Fl_Widget * resizable() const;
+
+function Get_Resizable
+       (This : in Group)
+    return access Widget'Class;
+
 void resizable(Fl_Widget &o);
+
 void resizable(Fl_Widget *o);
 
@@ -334,40 +373,61 @@ procedure Set_Resizable
 
   
-Fl_Widget * resizable() const;
+void resize(int, int, int, int);
 
 
+ + + + + + + + + + + + + + + + + +
Protected Functions and Procedures
-function Get_Resizable
-       (This : in Group)
-    return access Widget'Class;
+void draw();
+
+procedure Draw
+       (This : in out Group);
 
-void resize(int, int, int, int);
+void draw_child(Fl_Widget &widget) const;
 
 
-static Fl_Group * current();
+void draw_children();
 
 
-function Get_Current
-    return access Group'Class;
+void draw_outside_label(const Fl_Widget &widget) const;
 
 
-static void current(Fl_Group *g);
+int * sizes();
 
 
-procedure Set_Current
-       (To : in Group'Class);
+void update_child(Fl_Widget &widget) const;
 
 
-- cgit