diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 16:04:40 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 16:04:40 +1300 |
commit | 8b9a09364553d2495b133f948c1ddf428d0b9dae (patch) | |
tree | 30cbab49b67937bda80e5e4f77253dd4ff611983 /doc | |
parent | dbf6f4db24aee7315b2782a87e127367887e2036 (diff) |
Filled hole in Fl_Input_Choice binding
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fl_input_choice.html | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/doc/fl_input_choice.html b/doc/fl_input_choice.html index 9afac9e..5c49a61 100644 --- a/doc/fl_input_choice.html +++ b/doc/fl_input_choice.html @@ -157,17 +157,41 @@ procedure Set_Down_Box </tr> <tr> +<td>Check index values against the size method of menubutton manually.</td> +<td><pre> +function Has_Item + (This : in Input_Choice; + Place : in FLTK.Widgets.Menus.Index) + return Boolean; +</pre></td> + </tr> + + <tr> +<td>Use the menu method to access the menu item array and index it directly.</td> +<td><pre> +function Item + (This : in Input_Choice; + Place : in FLTK.Widgets.Menus.Index) + return FLTK.Menu_Items.Menu_Item_Reference; +</pre></td> + </tr> + + <tr> <td><pre> const Fl_Menu_Item * menu(); </pre></td> -<td> </td> +<td>Use Item or Button_Menu.Iterate as necessary to access specific items or walk the array.</td> </tr> <tr> <td><pre> void menu(const Fl_Menu_Item *m); </pre></td> -<td> </td> +<td><pre> +procedure Use_Same_Items + (This : in out Input_Choice; + Donor : in FLTK.Widgets.Menus.Menu'Class); +</pre></td> </tr> <tr> |