return eext_rotary_selector_items_get(mold->rotary_selector);
}
+EAPI void
+eext_more_option_editing_enabled_set(Evas_Object *obj, Eina_Bool enabled)
+{
+ const Evas_Object *more_option = obj;
+ Eext_More_Option_Data *mold = NULL;
+
+ if (!more_option)
+ {
+ ERR("more_option is NULL!!");
+ return;
+ }
+
+ mold = _more_option_data_get(more_option);
+ if (!mold)
+ {
+ ERR("mold is NULL!!");
+ return;
+ }
+
+ eext_rotary_selector_editing_enabled_set(mold->rotary_selector, enabled);
+}
+
+EAPI Eina_Bool
+eext_more_option_editing_enabled_get(const Evas_Object *obj)
+{
+ const Evas_Object *more_option = obj;
+ Eext_More_Option_Data *mold = NULL;
+
+ if (!more_option)
+ {
+ ERR("more_option is NULL!!");
+ return EINA_FALSE;
+ }
+
+ mold = _more_option_data_get(more_option);
+ if (!mold)
+ {
+ ERR("mold is NULL!!");
+ return EINA_FALSE;
+ }
+
+ return eext_rotary_selector_editing_enabled_get(mold->rotary_selector);
+}
+
+EAPI Eina_Bool
+eext_more_option_add_item_enabled_get(const Evas_Object *obj)
+{
+ const Evas_Object *more_option = obj;
+ Eext_More_Option_Data *mold = NULL;
+
+ if (!more_option)
+ {
+ ERR("more_option is NULL!!");
+ return EINA_FALSE;
+ }
+
+ mold = _more_option_data_get(more_option);
+ if (!mold)
+ {
+ ERR("mold is NULL!!");
+ return EINA_FALSE;
+ }
+
+ return eext_rotary_selector_add_item_enabled_get(mold->rotary_selector);
+}
+
+EAPI void
+eext_more_option_add_item_enabled_set(Evas_Object *obj, Eina_Bool enabled)
+{
+ const Evas_Object *more_option = obj;
+ Eext_More_Option_Data *mold = NULL;
+
+ if (!more_option)
+ {
+ ERR("more_option is NULL!!");
+ return;
+ }
+
+ mold = _more_option_data_get(more_option);
+ if (!mold)
+ {
+ ERR("mold is NULL!!");
+ return;
+ }
+
+ return eext_rotary_selector_add_item_enabled_set(mold->rotary_selector, enabled);
+}
+
+EAPI Eina_Bool
+eext_more_option_item_delete_enabled_get(const Eext_Object_Item *item)
+{
+ return eext_rotary_selector_item_delete_enabled_get(item);
+}
+
+EAPI void
+eext_more_option_item_delete_enabled_set(Eext_Object_Item *item, Eina_Bool enabled)
+{
+ eext_rotary_selector_item_delete_enabled_set(item, enabled);
+}
+
//for accessibility
static Eina_Bool
_access_action_cb(void *data, Evas_Object *obj, Elm_Access_Action_Info *action_info)