From 49f2a539cdc77b504ddef00162625531b659c767 Mon Sep 17 00:00:00 2001
From: Jedidiah Barber <contact@jedbarber.id.au>
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
 </table>
 
 
+
+<table class="function">
+  <tr><th colspan="2">Protected Functions and Procedures</th></tr>
+
+  <tr>
+<td><pre>
+int full_height() const;
+</pre>(Actually private in 1.3)</td>
+<td><pre>
+function Full_List_Height
+       (This : in File_Browser)
+    return Integer;
+</pre></td>
+  </tr>
+
+  <tr>
+<td><pre>
+int incr_height() const;
+</pre>(Actually private in 1.3)</td>
+<td><pre>
+function Average_Item_Height
+       (This : in File_Browser)
+    return Integer;
+</pre></td>
+  </tr>
+
+  <tr>
+<td><pre>
+void item_draw(void *, int, int, int, int) const;
+</pre>(Actually private in 1.3)</td>
+<td><pre>
+procedure Item_Draw
+       (This       : in File_Browser;
+        Item       : in Item_Cursor;
+        X, Y, W, H : in Integer);
+</pre></td>
+  </tr>
+
+  <tr>
+<td><pre>
+int item_height(void *) const;
+</pre>(Actually private in 1.3)</td>
+<td><pre>
+function Item_Height
+       (This : in File_Browser;
+        Item : in Item_Cursor)
+    return Integer;
+</pre></td>
+  </tr>
+
+  <tr>
+<td><pre>
+int item_width(void *) const;
+</pre>(Actually private in 1.3)</td>
+<td><pre>
+function Item_Width
+       (This : in File_Browser;
+        Item : in Item_Cursor)
+    return Integer;
+</pre></td>
+  </tr>
+
+</table>
+
+
   </body>
 </html>
 
-- 
cgit