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_scroll.html | 71 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 60 insertions(+), 11 deletions(-) (limited to 'doc/fl_scroll.html') diff --git a/doc/fl_scroll.html b/doc/fl_scroll.html index aab79c9..697fc9b 100644 --- a/doc/fl_scroll.html +++ b/doc/fl_scroll.html @@ -51,36 +51,54 @@ - + + + + + + +
Functions and Procedures
Attributes
-Fl_Scroll(int X, int Y, int W, int H, const char *L=0);
+Fl_Scrollbar hscrollbar;
 
 
-function Create
-       (X, Y, W, H : in Integer;
-        Text       : in String)
-    return Scroll;
+Fl_Scrollbar scrollbar;
 
 
+ + + + + + +
Constructors
-void clear();
+Fl_Scroll(int X, int Y, int W, int H, const char *L=0);
 
-procedure Clear
-       (This : in out Scroll);
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return Scroll;
 
+ + + + + + @@ -171,6 +189,37 @@ procedure Set_Type
Functions and Procedures
-void draw();
+void clear();
 
-procedure Draw
+procedure Clear
        (This : in out Scroll);
 
+ + + + + + + + + + + + + + + + + + + +
Protected Functions and Procedures
+void bbox(int &, int &, int &, int &);
+
 
+void draw();
+
+procedure Draw
+       (This : in out Scroll);
+
+void recalc_scrollbars(Scrollinfo &si);
+
 
+ + -- cgit