diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-06 23:46:40 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-06 23:46:40 +1300 |
commit | 49f2a539cdc77b504ddef00162625531b659c767 (patch) | |
tree | 30a90d61fa1a2c545f0da92f1cb7779fb802610b /doc/fl_file_browser.html | |
parent | 02a3af82e69848af64955b4c646f3fe5f1738a8b (diff) |
Revised Browser subhierarchy, mostly protected method bindings
Diffstat (limited to 'doc/fl_file_browser.html')
-rw-r--r-- | doc/fl_file_browser.html | 65 |
1 files changed, 65 insertions, 0 deletions
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> |