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_value_output.html | 52 ++++++++++++++++++++++++++++++------------------ 1 file changed, 33 insertions(+), 19 deletions(-) (limited to 'doc/fl_value_output.html') diff --git a/doc/fl_value_output.html b/doc/fl_value_output.html index ccf05c1..bb30970 100644 --- a/doc/fl_value_output.html +++ b/doc/fl_value_output.html @@ -46,7 +46,7 @@ - + - - - - +
Functions and Procedures
Constructors
@@ -55,20 +55,17 @@ Fl_Value_Output(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 Value_Output;
 
-void draw();
-
-procedure Draw
-       (This : in out Value_Output);
-
+ + + + + @@ -173,6 +170,23 @@ procedure Set_Text_Size
Functions and Procedures
@@ -84,23 +81,23 @@ function Handle
 
   
-void soft(char s);
+char soft() const;
 
-procedure Set_Soft
-       (This : in out Value_Output;
-        To   : in     Boolean);
+function Is_Soft
+       (This : in Value_Output)
+    return Boolean;
 
-char soft() const;
+void soft(char s);
 
-function Is_Soft
-       (This : in Value_Output)
-    return Boolean;
+procedure Set_Soft
+       (This : in out Value_Output;
+        To   : in     Boolean);
 
+ + + + + + + + + +
Protected Functions and Procedures
+void draw();
+
+procedure Draw
+       (This : in out Value_Output);
+
+ + -- cgit