Sha256: a8ef0d4b997785dc239d40693133d281b3a7319f3bd955c8d8b16d59d3470667
Contents?: true
Size: 1.26 KB
Versions: 6
Compression:
Stored size: 1.26 KB
Contents
# @title Vedeu Menu Events ## Menu Events Note: 'name' is a Symbol unless mentioned otherwise. ### `:_menu_bottom_` Makes the last menu item the current menu item. Vedeu.trigger(:_menu_bottom_, name) ### `:_menu_current_` Returns the current menu item. Vedeu.trigger(:_menu_current_, name) ### `:_menu_deselect_` Deselects all menu items. Vedeu.trigger(:_menu_deselect_, name) ### `:_menu_items_` Returns all the menu items with respective `current` or `selected` boolean indicators. Vedeu.trigger(:_menu_items_, name) ### `:_menu_next_` Makes the next menu item the current menu item, until it reaches the last item. Vedeu.trigger(:_menu_next_, name) ### `:_menu_prev_` Makes the previous menu item the current menu item, until it reaches the first item. Vedeu.trigger(:_menu_prev_, name) ### `:_menu_selected_` Returns the selected menu item. Vedeu.trigger(:_menu_selected_, name) ### `:_menu_select_` Makes the current menu item also the selected menu item. Vedeu.trigger(:_menu_select_, name) ### `:_menu_top_` Makes the first menu item the current menu item. Vedeu.trigger(:_menu_top_, name) ### `:_menu_view_` Returns a subset of the menu items; starting at the current item to the last item. Vedeu.trigger(:_menu_view_, name)
Version data entries
6 entries across 6 versions & 1 rubygems