From 49f2a539cdc77b504ddef00162625531b659c767 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Mon, 6 Jan 2025 23:46:40 +1300 Subject: Revised Browser subhierarchy, mostly protected method bindings --- doc/fl_file_browser.html | 65 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) (limited to 'doc/fl_file_browser.html') diff --git a/doc/fl_file_browser.html b/doc/fl_file_browser.html index 9f9eddb..f90bbea 100644 --- a/doc/fl_file_browser.html +++ b/doc/fl_file_browser.html @@ -189,6 +189,71 @@ procedure Set_Text_Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Protected Functions and Procedures
+int full_height() const;
+
(Actually private in 1.3)
+function Full_List_Height
+       (This : in File_Browser)
+    return Integer;
+
+int incr_height() const;
+
(Actually private in 1.3)
+function Average_Item_Height
+       (This : in File_Browser)
+    return Integer;
+
+void item_draw(void *, int, int, int, int) const;
+
(Actually private in 1.3)
+procedure Item_Draw
+       (This       : in File_Browser;
+        Item       : in Item_Cursor;
+        X, Y, W, H : in Integer);
+
+int item_height(void *) const;
+
(Actually private in 1.3)
+function Item_Height
+       (This : in File_Browser;
+        Item : in Item_Cursor)
+    return Integer;
+
+int item_width(void *) const;
+
(Actually private in 1.3)
+function Item_Width
+       (This : in File_Browser;
+        Item : in Item_Cursor)
+    return Integer;
+
+ + -- cgit