if (ret) return ret;
Elm_Genlist_Item_Type genlist_item_type = elm_genlist_item_type_get(eo_it);
- //TIZEN ONLY (160609) : Added in order to read when group item contain checkbox, sub text and normal as per UX guide 0.3.
- Eina_List *children = NULL, *l;
- Eo *item;
- Eina_Bool flag_contain_checkbox = EINA_FALSE;
- eo_do(eo_it, children = elm_interface_atspi_accessible_children_get());
- EINA_LIST_FOREACH(children, l, item)
- {
- if (eo_isa((item), ELM_CHECK_CLASS))
- {
- flag_contain_checkbox = EINA_TRUE;
- break;
- }
- }
- //
-
buf = eina_strbuf_new();
if (it->itc->func.text_get)
}
}
- //TIZEN ONLY (160609) : Added in order to read when group item contain checkbox, sub text and normal as per UX guide 0.3.
- if (((genlist_item_type & ELM_GENLIST_ITEM_GROUP) || (genlist_item_type & ELM_GENLIST_ITEM_TREE)) && !flag_contain_checkbox)
- eina_strbuf_append(buf,", header");
- //
-
accessible_name = eina_strbuf_string_steal(buf);
eina_strbuf_free(buf);