summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_menu_legacy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/elm_menu_legacy.h')
-rw-r--r--src/lib/elementary/elm_menu_legacy.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_menu_legacy.h b/src/lib/elementary/elm_menu_legacy.h
index 9c86efc722..8903190ce9 100644
--- a/src/lib/elementary/elm_menu_legacy.h
+++ b/src/lib/elementary/elm_menu_legacy.h
@@ -30,5 +30,62 @@ EAPI void elm_menu_parent_set(Evas_Object *obj, Evas_Obj
*/
EAPI Evas_Object *elm_menu_parent_get(const Evas_Object *obj);
+/**
+ * @brief Get the selected item in the menu.
+ *
+ * @return The selected item or @c null.
+ *
+ * @ingroup Elm_Menu
+ */
+EAPI Elm_Widget_Item *elm_menu_selected_item_get(const Evas_Object *obj);
+
+/** Returns a list of the item's items.
+ *
+ * @ingroup Elm_Menu
+ */
+EAPI const Eina_List *elm_menu_items_get(const Evas_Object *obj);
+
+/** Get the first item in the menu.
+ *
+ * @ingroup Elm_Menu
+ */
+EAPI Elm_Widget_Item *elm_menu_first_item_get(const Evas_Object *obj);
+
+/** Get the last item in the menu.
+ *
+ * @ingroup Elm_Menu
+ */
+EAPI Elm_Widget_Item *elm_menu_last_item_get(const Evas_Object *obj);
+
+/**
+ * @brief Set the selected state of @c item.
+ *
+ * @param[in] selected The selection state.
+ *
+ * @ingroup Elm_Menu_Item
+ */
+EAPI void elm_menu_item_selected_set(Evas_Object *obj, Eina_Bool selected);
+
+/**
+ * @brief Get the selected state of @c item.
+ *
+ * @return The selection state.
+ *
+ * @ingroup Elm_Menu_Item
+ */
+EAPI Eina_Bool elm_menu_item_selected_get(const Evas_Object *obj);
+
+/** Get the previous item in the menu.
+ *
+ * @ingroup Elm_Menu_Item
+ */
+EAPI Elm_Widget_Item *elm_menu_item_prev_get(const Evas_Object *obj);
+
+/** Get the next item in the menu.
+ *
+ * @ingroup Elm_Menu_Item
+ */
+EAPI Elm_Widget_Item *elm_menu_item_next_get(const Evas_Object *obj);
+
#include "elm_menu_item.eo.legacy.h"
#include "elm_menu.eo.legacy.h"