From 8b9a09364553d2495b133f948c1ddf428d0b9dae Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 16:04:40 +1300 Subject: Filled hole in Fl_Input_Choice binding --- doc/fl_input_choice.html | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) (limited to 'doc/fl_input_choice.html') 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 @@ -156,18 +156,42 @@ procedure Set_Down_Box + +Check index values against the size method of menubutton manually. +
+function Has_Item
+       (This  : in Input_Choice;
+        Place : in FLTK.Widgets.Menus.Index)
+    return Boolean;
+
+ + + +Use the menu method to access the menu item array and index it directly. +
+function Item
+       (This  : in Input_Choice;
+        Place : in FLTK.Widgets.Menus.Index)
+    return FLTK.Menu_Items.Menu_Item_Reference;
+
+ +
 const Fl_Menu_Item * menu();
 
-  +Use Item or Button_Menu.Iterate as necessary to access specific items or walk the array.
 void menu(const Fl_Menu_Item *m);
 
-  +
+procedure Use_Same_Items
+       (This  : in out Input_Choice;
+        Donor : in     FLTK.Widgets.Menus.Menu'Class);
+
-- cgit