Bundles / inc / view /

view_list.h

  1. /*
  2. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  3. *
  4. * Licensed under the Flora License, Version 1.1 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://floralicense.org/license/
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16.  
  17. #if !defined(_VIEW_LIST_H_)
  18. #define _VIEW_LIST_H_
  19.  
  20. Evas_Object *view_list_create(Evas_Object *parent);
  21. Elm_Genlist_Item_Class *view_list_add_itc(Elm_Gen_Item_Content_Get_Cb content_get_cb, Elm_Gen_Item_Del_Cb content_del_cb);
  22. void view_list_add_tree_callbacks(Evas_Object *list, Elm_Gen_Item_Class *itc_parent, Elm_Gen_Item_Class *itc_child, Evas_Smart_Cb expand_callback, Evas_Smart_Cb contract_callback);
  23. Elm_Object_Item *view_list_add_item(Evas_Object *list, Elm_Genlist_Item_Class *itc,
  24. Elm_Genlist_Item_Type item_type, Elm_Object_Item *parent_item,
  25. void *data, bool add_first,
  26. Elm_Object_Select_Mode mode,
  27. Evas_Smart_Cb func, const void *func_data);
  28. void view_list_del_item(Evas_Object *list, Elm_Object_Item *item);
  29. void view_list_del_item_cb(void *data, Evas_Object *obj);
  30. Elm_Object_Item *view_list_find_item_by_text(Evas_Object *list, char *text);
  31. void view_list_update(Evas_Object *list);
  32. void view_list_item_update(Elm_Object_Item *item);
  33.  
  34.  
  35. #endif