diff options
Diffstat (limited to 'doc/fl_input_choice.html')
-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> |